updated today.js

This commit is contained in:
martind2000 2016-02-14 22:07:21 +00:00
parent a0abd7c5b4
commit 4e4500fb82

View File

@ -4,29 +4,24 @@
* http://pm2.keymetrics.io/docs/usage/application-declaration/ * http://pm2.keymetrics.io/docs/usage/application-declaration/
*/ */
apps: [ apps: [
// First application // First application
{ {
name : "Silvrtree", "name": "Silvrtree",
script : "web-server.js", "script": "web-server.js",
"cwd": "/var/www/silvrtree", "cwd": "/var/www/silvrtree",
watch: true, "watch": true,
"max_restarts": 10,
"merge_logs" : true,
"autorestart" : false,
"restart_delay" : 3500,
env: { env: {
COMMON_VARIABLE: "true" COMMON_VARIABLE: "true"
}, },
env_production: { env_production: {
NODE_ENV: "production" NODE_ENV: "production"
} }
},
// Second application
{
name : "WEB",
script : "web.js"
} }
], ],
/** /**
* Deployment section * Deployment section
* http://pm2.keymetrics.io/docs/usage/deployment/ * http://pm2.keymetrics.io/docs/usage/deployment/