diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..5666a87 --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,10 @@ +// This is a configuration file for pm2, a production process manager for nodejs +module.exports = { + apps : [{ + name : "lean4web", + script : "server/index.js", + env: { + NODE_ENV: "production", + }, + }] +}