metatrondelivery/ecosystem.config.cjs
MOHAN 730a681d46
Some checks failed
CI / Lint, Unit & Integration Tests (push) Has been cancelled
fix: update application URLs in shopify.app.toml for correct deployment
2026-08-25 22:22:35 +05:30

32 lines
614 B
JavaScript

module.exports = {
apps: [
{
name: "delivery-app-web",
script: "npm",
args: "run start",
cwd: __dirname,
env: {
NODE_ENV: "production",
PORT: "11002",
},
instances: 1,
exec_mode: "fork",
autorestart: true,
max_memory_restart: "400M",
},
{
name: "delivery-app-worker",
script: "npx",
args: "tsx jobs/worker.ts",
cwd: __dirname,
env: {
NODE_ENV: "production",
},
instances: 1,
exec_mode: "fork",
autorestart: true,
max_memory_restart: "300M",
},
],
};