keeper/ecosystem.json

34 lines
683 B
JSON
Raw Normal View History

2016-03-02 16:00:12 +00:00
{
/**
* Application configuration section
* http://pm2.keymetrics.io/docs/usage/application-declaration/
*/
apps: [
// First application
{
"name": "Keeper",
"script": "keeper-server.js",
"cwd": "/var/www/keeper",
"watch": true,
2016-03-21 23:38:14 +00:00
"ignore_watch" : ["node_modules"],
2016-03-02 16:00:12 +00:00
"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: {
}
}