front_gestalt/ecosystem.config.js

14 lines
281 B
JavaScript
Raw Normal View History

2025-01-14 02:46:49 +03:00
module.exports = {
apps: [
{
name: "oopgen",
script: "npm",
args: "start",
instances: "max",
exec_mode: "cluster",
env: {
NODE_ENV: "production",
},
},
],
};