diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..1b4f299 --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,18 @@ +module.exports = { + apps: [ + { + name: "explit", + script: "npm", + args: "start", + autorestart: true, + watch: false, + max_memory_restart: "1G", + env: { + NODE_ENV: "production", + }, + env_production: { + NODE_ENV: "production", + }, + }, + ], +};