From 928361612274e686af79da0372299ed077058578 Mon Sep 17 00:00:00 2001 From: M1kola Date: Tue, 14 Jan 2025 02:46:49 +0300 Subject: [PATCH] ecosystem.config --- ecosystem.config.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ecosystem.config.js 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