updated today.js

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

View File

@ -1,55 +1,50 @@
{ {
/** /**
* Application configuration section * Application configuration section
* 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,
env: { "autorestart" : false,
COMMON_VARIABLE: "true" "restart_delay" : 3500,
}, env: {
env_production : { COMMON_VARIABLE: "true"
NODE_ENV: "production" },
} env_production: {
}, NODE_ENV: "production"
}
// Second application }
{ ],
name : "WEB", /**
script : "web.js" * Deployment section
* http://pm2.keymetrics.io/docs/usage/deployment/
*/
deploy: {
production: {
user: "node",
host: "212.83.163.1",
ref: "origin/master",
repo: "git@github.com:repo.git",
path: "/var/www/production",
"post-deploy": "npm install ; pm2 startOrRestart ecosystem.json --env production"
},
dev: {
user: "node",
host: "212.83.163.1",
ref: "origin/master",
repo: "git@github.com:repo.git",
path: "/var/www/development",
"post-deploy": "npm install ; pm2 startOrRestart ecosystem.json --env dev",
env: {
NODE_ENV: "dev"
}
}
} }
],
/**
* Deployment section
* http://pm2.keymetrics.io/docs/usage/deployment/
*/
deploy : {
production : {
user : "node",
host : "212.83.163.1",
ref : "origin/master",
repo : "git@github.com:repo.git",
path : "/var/www/production",
"post-deploy" : "npm install ; pm2 startOrRestart ecosystem.json --env production"
},
dev : {
user : "node",
host : "212.83.163.1",
ref : "origin/master",
repo : "git@github.com:repo.git",
path : "/var/www/development",
"post-deploy" : "npm install ; pm2 startOrRestart ecosystem.json --env dev",
env : {
NODE_ENV: "dev"
}
}
}
} }