diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 000000000..f82d6bc4f --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,11 @@ +module.exports = { + apps: [ + { + name: "ImEX Online API", + script: "./server.js", + env: { + NODE_ENV: "production", + }, + }, + ], +};