diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..5471646 --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,14 @@ +module.exports = { + apps: [ + { + name: "oopgen", + script: "npm", + args: "start", + instances: "max", + exec_mode: "cluster", + env: { + NODE_ENV: "production", + }, + }, + ], +}; \ No newline at end of file