@rubytech/create-realagent 1.0.423 → 1.0.425

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/dist/index.js CHANGED
@@ -757,7 +757,7 @@ function installService() {
757
757
  log("10", TOTAL, `Starting ${BRAND.productName}...`);
758
758
  if (!isLinux()) {
759
759
  console.log(" Skipping systemd service (not Linux). Start manually with:");
760
- console.log(` cd ${INSTALL_DIR}/maxy && MAXY_PLATFORM_ROOT=${INSTALL_DIR}/platform PORT=19200 HOSTNAME=0.0.0.0 KEEP_ALIVE_TIMEOUT=61000 node --require ./server-init.cjs server.js`);
760
+ console.log(` cd ${INSTALL_DIR}/maxy && MAXY_PLATFORM_ROOT=${INSTALL_DIR}/platform PORT=${BRAND.port ?? 19200} HOSTNAME=0.0.0.0 KEEP_ALIVE_TIMEOUT=61000 node --require ./server-init.cjs server.js`);
761
761
  return;
762
762
  }
763
763
  // Persist UDP buffer sizes for cloudflared QUIC stability (applied on every boot via sysctl.d)
@@ -794,7 +794,7 @@ WatchdogSec=30
794
794
  TimeoutStartSec=60
795
795
  TimeoutStopSec=10
796
796
  Environment=NODE_ENV=production
797
- Environment=PORT=19200
797
+ Environment=PORT=${BRAND.port ?? 19200}
798
798
  Environment=HOSTNAME=0.0.0.0
799
799
  Environment=KEEP_ALIVE_TIMEOUT=61000
800
800
  Environment=DISPLAY=:99
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rubytech/create-realagent",
3
- "version": "1.0.423",
3
+ "version": "1.0.425",
4
4
  "description": "Install Real Agent — Built for agents. By agents.",
5
5
  "bin": {
6
6
  "create-realagent": "./dist/index.js"
@@ -3,6 +3,6 @@
3
3
  "tagline": "Built for agents. By agents.",
4
4
  "domain": "realagency.network",
5
5
  "hostname": "realagent",
6
- "logo": "/brand/realagent-icon-dark-web.png",
6
+ "logo": "/brand/realagent-icon-web.png",
7
7
  "favicon": "/brand/realagent-favicon-dark-32.png"
8
8
  }
@@ -5,6 +5,7 @@
5
5
  "installDir": "realagent",
6
6
  "configDir": ".realagent",
7
7
  "tagline": "Built for agents. By agents.",
8
+ "port": 19300,
8
9
  "domain": "realagency.network",
9
10
 
10
11
  "defaultColors": {
@@ -23,7 +24,7 @@
23
24
  },
24
25
 
25
26
  "assets": {
26
- "logo": "realagent-icon-dark-web.png",
27
+ "logo": "realagent-icon-web.png",
27
28
  "logoMonochrome": "realagent-icon-web.png",
28
29
  "logoRound": "realagent-icon-dark-round-web.png",
29
30
  "favicon": "realagent-favicon-dark-32.png"