diff --git a/ecosystem.config.cjs b/ecosystem.config.cjs new file mode 100644 index 0000000..5f34963 --- /dev/null +++ b/ecosystem.config.cjs @@ -0,0 +1,17 @@ +module.exports = { + + apps: [ + { + name : 'Greek Manifests', + script : './app.mjs', + instances : 'max', + exec_mode : 'cluster', + watch : ["app.mjs","src","controllers","routes"], + instance_var : 'INSTANCE_ID', + merge_logs : true, + env: { + "NODE_ENV" : "production", + } + }, + ] +} \ No newline at end of file