diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..5bedf78 --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,18 @@ +module.exports = { + apps : [{ + name: 'FCM-SDK-Admin', + script: 'index.js', + exec_mode: 'cluster', + instances: "1", + watch: true, + env: { + "PORT": 3002, + "NODE_ENV": "development", + }, + env_production : { + "PORT": 3002, + "NODE_ENV": "production" + } + }] +}; +