From e0f1c0084b282e10da20c2fadc9c3d83ae01834d Mon Sep 17 00:00:00 2001 From: "dios.one" Date: Tue, 21 Apr 2026 18:08:41 +0700 Subject: [PATCH] add ecosystem --- ecosystem.config.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ecosystem.config.js diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..edadccc --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,18 @@ +module.exports = { + apps: [ + { + name: 'nova40', + script: 'npx', + args: 'expo start --no-dev --port 8081', + cwd: 'd:/Project/Zen40/Nova40', + watch: false, + autorestart: true, + max_restarts: 10, + restart_delay: 5000, + env: { + NODE_ENV: 'production', + EXPO_NO_DOTENV: '1', + }, + }, + ], +};