32 lines
615 B
JavaScript
32 lines
615 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",
|
|
},
|
|
],
|
|
};
|