diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..dcab532 --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,12 @@ +module.exports = [ + { + script: "npm", + args: "start", + name: "web", + exec_mode: "cluster", + instances: "1", + env: { + NODE_ENV: "production", + }, + }, +];