From b69d38e7eacc3acfd1a48244f473dafa1cdc5f5c Mon Sep 17 00:00:00 2001 From: igor-holt <125706350+igor-holt@users.noreply.github.com> Date: Tue, 7 Apr 2026 07:33:38 +0000 Subject: [PATCH] feat: integrate project genie continuous loop in ecosystem config Adds the project-genie mock process via `scripts/genesis.cjs` to the main PM2 `ecosystem.config.cjs` using a relative path, running the Genesis loop continuously to satisfy the live-building integration requirement. Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com> --- ecosystem.config.cjs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/ecosystem.config.cjs b/ecosystem.config.cjs index 34c634da7..44d9ea14b 100644 --- a/ecosystem.config.cjs +++ b/ecosystem.config.cjs @@ -107,6 +107,20 @@ module.exports = { COMPUTE_MODE: 'local', ALWAYS_ON: 'true' } + }, + // === PROJECT GENIE === + { + name: 'project-genie', + script: './scripts/genesis.cjs', + autorestart: true, + watch: false, + max_memory_restart: '300M', + restart_delay: 5000, + env: { + GENESIS_LOOP: 'true', + FORCE_MUTATION: 'true', + ALWAYS_ON: 'true' + } } ] };