jubilee/ecosystem.json

34 lines
692 B
JSON
Raw Normal View History

2018-02-23 22:36:59 +00:00
{
/**
* Application configuration section
* http://pm2.keymetrics.io/docs/usage/application-declaration/
*/
apps: [
// First application
{
"name": "Jubilee",
"script": "server.js",
2018-02-23 22:42:09 +00:00
"cwd": "/home/martind2000/dev/jubilee",
2018-02-23 23:14:03 +00:00
"watch": false,
2018-02-23 22:36:59 +00:00
"ignore_watch" : ["node_modules"],
"merge_logs" : true,
"autorestart" : true,
"restart_delay" : 3500,
"max_memory_restart" : "300M",
env: {
COMMON_VARIABLE: "true"
},
env_production: {
NODE_ENV: "production"
}
}
],
/**
* Deployment section
* http://pm2.keymetrics.io/docs/usage/deployment/
*/
deploy: {
}
}