@rubytech/create-maxy-code 0.1.121 → 0.1.122

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2569,6 +2569,7 @@ function installServiceDarwin() {
2569
2569
  ["EMBED_DIMENSIONS", String(EMBED_DIMS)],
2570
2570
  ["NEO4J_URI", `bolt://localhost:${NEO4J_PORT}`],
2571
2571
  ["PORT", String(PORT)],
2572
+ ["MAXY_UI_INTERNAL_PORT", String(PORT + 1)],
2572
2573
  ["MAXY_PLATFORM_ROOT", `${INSTALL_DIR}/platform`],
2573
2574
  ]) {
2574
2575
  const re = new RegExp(`^${key}=.*$`, "m");
@@ -2580,7 +2581,7 @@ function installServiceDarwin() {
2580
2581
  }
2581
2582
  }
2582
2583
  writeFileSync(envPath, envContent);
2583
- logFile(` .env: DISPLAY_MODE=${DISPLAY_MODE}, EMBED_MODEL=${EMBED_MODEL}, EMBED_DIMENSIONS=${EMBED_DIMS}, NEO4J_URI=bolt://localhost:${NEO4J_PORT}, PORT=${PORT}`);
2584
+ logFile(` .env: DISPLAY_MODE=${DISPLAY_MODE}, EMBED_MODEL=${EMBED_MODEL}, EMBED_DIMENSIONS=${EMBED_DIMS}, NEO4J_URI=bolt://localhost:${NEO4J_PORT}, PORT=${PORT}, MAXY_UI_INTERNAL_PORT=${PORT + 1}`);
2584
2585
  }
2585
2586
  catch (err) {
2586
2587
  console.error(` WARNING: failed to write .env to ${envPath}: ${err instanceof Error ? err.message : String(err)}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rubytech/create-maxy-code",
3
- "version": "0.1.121",
3
+ "version": "0.1.122",
4
4
  "description": "Install Maxy — AI for Productive People",
5
5
  "bin": {
6
6
  "create-maxy-code": "./dist/index.js"