updated today.js

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

View File

@ -3,51 +3,46 @@
* 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,
"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/
*/ */
deploy : { deploy: {
production : { production: {
user : "node", user: "node",
host : "212.83.163.1", host: "212.83.163.1",
ref : "origin/master", ref: "origin/master",
repo : "git@github.com:repo.git", repo: "git@github.com:repo.git",
path : "/var/www/production", path: "/var/www/production",
"post-deploy" : "npm install ; pm2 startOrRestart ecosystem.json --env production" "post-deploy": "npm install ; pm2 startOrRestart ecosystem.json --env production"
}, },
dev : { dev: {
user : "node", user: "node",
host : "212.83.163.1", host: "212.83.163.1",
ref : "origin/master", ref: "origin/master",
repo : "git@github.com:repo.git", repo: "git@github.com:repo.git",
path : "/var/www/development", path: "/var/www/development",
"post-deploy" : "npm install ; pm2 startOrRestart ecosystem.json --env dev", "post-deploy": "npm install ; pm2 startOrRestart ecosystem.json --env dev",
env : { env: {
NODE_ENV: "dev" NODE_ENV: "dev"
} }
} }