nyxora 1.7.1 → 1.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.dockerignore +12 -0
- package/CHANGELOG.md +5 -0
- package/DOCKER.md +68 -0
- package/Dockerfile +43 -0
- package/package.json +1 -1
- package/packages/core/package.json +1 -1
- package/packages/core/src/config/parser.ts +6 -2
- package/packages/core/src/gateway/googleAuthModule.ts +19 -0
- package/packages/core/src/gateway/server.ts +9 -3
- package/packages/dashboard/dist/assets/{index-Dc3Tu0Te.js → index-cGPka4s1.js} +13 -13
- package/packages/dashboard/dist/index.html +1 -1
- package/packages/dashboard/package.json +1 -1
- package/packages/mcp-server/package.json +2 -2
- package/packages/policy/package.json +2 -2
- package/packages/policy/src/server.ts +2 -2
- package/packages/signer/package.json +2 -2
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>Nyxora Dashboard</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-cGPka4s1.js"></script>
|
|
9
9
|
<link rel="stylesheet" crossorigin href="/assets/index-BSk4CLkG.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nyxora-mcp-server",
|
|
3
|
-
"version": "1.7.
|
|
4
|
-
"description": "Nyxora MCP
|
|
3
|
+
"version": "1.7.2",
|
|
4
|
+
"description": "Nyxora MCP Subserver, for external AI clients",
|
|
5
5
|
"main": "dist/server.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "tsc",
|
|
@@ -186,6 +186,6 @@ app.post('/approve-tx/:id', (req, res) => {
|
|
|
186
186
|
signerReq.end();
|
|
187
187
|
});
|
|
188
188
|
|
|
189
|
-
app.listen(PORT, '
|
|
190
|
-
console.log(`[Policy Engine] Listening on
|
|
189
|
+
app.listen(PORT, '0.0.0.0', () => {
|
|
190
|
+
console.log(`[Policy Engine] Listening on 0.0.0.0:${PORT}`);
|
|
191
191
|
});
|