| Current Path : /usr/lib/node_modules/pm2/lib/templates/sample-apps/http-server/ |
| Current File : //usr/lib/node_modules/pm2/lib/templates/sample-apps/http-server/ecosystem.config.js |
module.exports = {
apps : [{
name: 'API',
script: 'api.js',
instances: 4,
max_memory_restart: '1G',
env: {
NODE_ENV: 'development'
},
env_production: {
NODE_ENV: 'production'
}
}]
};