obrand-admin-server/O-BrandServer/ecosystem.json

30 lines
582 B
JSON
Raw Normal View History

2016-04-08 15:45:02 +00:00
{
/**
* Application configuration section
* http://pm2.keymetrics.io/docs/usage/application-declaration/
*/
apps : [
// First application
{
2016-05-26 15:45:00 +00:00
name : "Obrand-Admin-Server",
2016-04-08 15:45:02 +00:00
script : "obrand-server.js",
2016-05-26 15:45:00 +00:00
"cwd": "/home/ubuntu/live",
"watch": true,
"max_restarts": 64,
"merge_logs" : true,
"autorestart" : true,
"restart_delay" : 3500,
"max_memory_restart" : "300M",
2016-04-08 15:45:02 +00:00
env: {
COMMON_VARIABLE: "true"
},
env_production : {
NODE_ENV: "production"
}
}
]
}