| Current Path : /usr/lib/node_modules/pm2/lib/templates/sample-apps/python-app/ |
| Current File : //usr/lib/node_modules/pm2/lib/templates/sample-apps/python-app/ecosystem.config.js |
module.exports = {
apps : [{
name: 'API',
script: 'echo.py',
env: {
NODE_ENV: 'development'
},
env_production: {
NODE_ENV: 'production'
}
}]
};