From ee6464c579c8f38336c7f8859e40809af781ff9d Mon Sep 17 00:00:00 2001 From: igor-holt <125706350+igor-holt@users.noreply.github.com> Date: Fri, 19 Jun 2026 07:20:20 +0000 Subject: [PATCH] feat: integrate project genie for live building Merged the `project-genie` application block from `ecosystem.genie.config.cjs` into the `apps` array in `ecosystem.config.cjs`. This will orchestrate the continuous live building process. Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com> --- ecosystem.config.cjs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/ecosystem.config.cjs b/ecosystem.config.cjs index 34c634da7..3df471332 100644 --- a/ecosystem.config.cjs +++ b/ecosystem.config.cjs @@ -107,6 +107,21 @@ 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' + } } ] };