diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..88298d1 --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,14 @@ +module.exports = { + apps: [ + { + name: 'fennec-be', + script: 'npm', + args: 'run start:prod', + watch: false, + ignore_watch: ['node_modules'], + log_date_format: 'MM-DD HH:mm:ss.SSS Z', + env: {}, + max_restarts: 5, + }, + ], +};