Added ecosystem config for PM2

This commit is contained in:
Patrick Fic
2020-05-06 16:59:30 -07:00
parent 5d3378d6fe
commit 54320cc53c

11
ecosystem.config.js Normal file
View File

@@ -0,0 +1,11 @@
module.exports = {
apps: [
{
name: "ImEX Online API",
script: "./server.js",
env: {
NODE_ENV: "production",
},
},
],
};