@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 CHANGED
@@ -1,5 +1,5 @@
1
1
  # Hub server port
2
- SERVER_PORT=3101
2
+ SERVER_PORT=3300
3
3
 
4
4
  # NAISYS folder for logs and file uploads
5
5
  NAISYS_FOLDER="~/.naisys"
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) || 3101;
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.19",
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.19"
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.19",
42
- "@naisys/common-node": "3.0.0-beta.19",
43
- "@naisys/hub-database": "3.0.0-beta.19",
44
- "@naisys/hub-protocol": "3.0.0-beta.19",
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",