@naisys/hub 3.0.0-beta.19 → 3.0.0-beta.20
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/.env.example +1 -1
- package/dist/naisysHub.js +1 -1
- package/package.json +6 -6
package/.env.example
CHANGED
package/dist/naisysHub.js
CHANGED
|
@@ -31,7 +31,7 @@ export const startHub = async (startupType, startSupervisor, plugins, startupAge
|
|
|
31
31
|
// Create log service first
|
|
32
32
|
const logService = createDualLogger("hub-server.log");
|
|
33
33
|
logService.log(`[Hub] Starting Hub server in ${startupType} mode...`);
|
|
34
|
-
const serverPort = Number(process.env.SERVER_PORT) ||
|
|
34
|
+
const serverPort = Number(process.env.SERVER_PORT) || 3300;
|
|
35
35
|
// Load or generate hub access key for client authentication
|
|
36
36
|
const hubAccessKey = loadOrCreateAccessKey();
|
|
37
37
|
const naisysFolder = process.env.NAISYS_FOLDER || "";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naisys/hub",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.20",
|
|
4
4
|
"description": "NAISYS Hub - Adds persistence and multi-instance coordination to NAISYS",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/naisysHub.js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"!dist/**/*.d.ts.map"
|
|
31
31
|
],
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@naisys/supervisor": "3.0.0-beta.
|
|
33
|
+
"@naisys/supervisor": "3.0.0-beta.20"
|
|
34
34
|
},
|
|
35
35
|
"peerDependenciesMeta": {
|
|
36
36
|
"@naisys/supervisor": {
|
|
@@ -38,10 +38,10 @@
|
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@naisys/common": "3.0.0-beta.
|
|
42
|
-
"@naisys/common-node": "3.0.0-beta.
|
|
43
|
-
"@naisys/hub-database": "3.0.0-beta.
|
|
44
|
-
"@naisys/hub-protocol": "3.0.0-beta.
|
|
41
|
+
"@naisys/common": "3.0.0-beta.20",
|
|
42
|
+
"@naisys/common-node": "3.0.0-beta.20",
|
|
43
|
+
"@naisys/hub-database": "3.0.0-beta.20",
|
|
44
|
+
"@naisys/hub-protocol": "3.0.0-beta.20",
|
|
45
45
|
"commander": "^14.0.3",
|
|
46
46
|
"dotenv": "^17.3.1",
|
|
47
47
|
"fastify": "^5.8.2",
|