From 315073cf3bc29303eb0542d4531907758e9e78ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Padez?= Date: Wed, 12 Aug 2026 16:54:35 +0000 Subject: [PATCH] move the pm2 ecosystem files into ecosystem-files/ for reference MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Temporary, and it breaks things — nothing has been repointed yet: scripts/setup/setup.sh:59 joins a bare filename to $PROJECT_DIR scripts/setup/setup_mac_light.sh:60 the same src/servers/app-store/pm2.ts:23 starts sidecars from 'ecosystem.config.cjs' src/servers/app-store/catalogue.test.ts:12-13 require('../../../ecosystem…') ServersView.tsx:207 tells the owner to run pm2 start ecosystem.config.cjs And one thing that changed silently rather than breaking: ecosystem.profile.cjs:53 pins cwd to __dirname, which was the repo root and is now ecosystem-files/, so the .env that line exists to find is no longer beside it. These are here to be read while the setup scripts are reworked, and get deleted once that lands. Co-Authored-By: Claude Opus 5 (1M context) --- ecosystem.config.cjs => ecosystem-files/ecosystem.config.cjs | 0 .../ecosystem.light.config.cjs | 0 .../ecosystem.mac.light.config.cjs | 0 ecosystem.profile.cjs => ecosystem-files/ecosystem.profile.cjs | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename ecosystem.config.cjs => ecosystem-files/ecosystem.config.cjs (100%) rename ecosystem.light.config.cjs => ecosystem-files/ecosystem.light.config.cjs (100%) rename ecosystem.mac.light.config.cjs => ecosystem-files/ecosystem.mac.light.config.cjs (100%) rename ecosystem.profile.cjs => ecosystem-files/ecosystem.profile.cjs (100%) diff --git a/ecosystem.config.cjs b/ecosystem-files/ecosystem.config.cjs similarity index 100% rename from ecosystem.config.cjs rename to ecosystem-files/ecosystem.config.cjs diff --git a/ecosystem.light.config.cjs b/ecosystem-files/ecosystem.light.config.cjs similarity index 100% rename from ecosystem.light.config.cjs rename to ecosystem-files/ecosystem.light.config.cjs diff --git a/ecosystem.mac.light.config.cjs b/ecosystem-files/ecosystem.mac.light.config.cjs similarity index 100% rename from ecosystem.mac.light.config.cjs rename to ecosystem-files/ecosystem.mac.light.config.cjs diff --git a/ecosystem.profile.cjs b/ecosystem-files/ecosystem.profile.cjs similarity index 100% rename from ecosystem.profile.cjs rename to ecosystem-files/ecosystem.profile.cjs