1
0

updated to kmc

This commit is contained in:
David Baldwynn 2016-04-29 03:46:37 -04:00
parent 4e41a4db22
commit a1a5f9aa0a
2 changed files with 20 additions and 8 deletions

2
config/env/all.js vendored
View File

@ -10,7 +10,7 @@ module.exports = {
port: process.env.PORT || 3000,
templateEngine: 'swig',
signupDisabled: process.env.SIGNUP_DISABLED || false;
signupDisabled: process.env.SIGNUP_DISABLED || false,
baseUrl: '',
tempUserCollection: 'temporary_users',

View File

@ -11,22 +11,34 @@
"repo" : "git@github.com:whitef0x0/tellform.git",
"path" : "/opt/deploy",
"post-deploy" : "npm install && bower install && pm2 startOrRestart ecosystem.json --env production",
"env" : {
"NODE_ENV": "production",
"BASE_URL": "stage.tellform.com"
}
},
"env" : {
"NODE_ENV": "production",
"BASE_URL": "stage.tellform.com"
}
},
"prod" : {
"user" : "polydaic",
"host" : "159.203.33.182",
"ref" : "origin/master",
"repo" : "git@github.com:whitef0x0/tellform.git",
"path" : "/opt/deploy",
"post-deploy" : "npm install && bower install && pm2 startOrRestart ecosystem.json --env production",
"env" : {
"NODE_ENV": "production",
"BASE_URL": "admin.tellform.com"
}
},
"kmc" : {
"user" : "polydaic",
"host" : "159.203.2.71",
"ref" : "origin/master",
"repo" : "git@github.com:whitef0x0/tellform.git",
"path" : "/opt/deploy",
"post-deploy" : "npm install && bower install && pm2 startOrRestart ecosystem.json --env production",
"env" : {
"NODE_ENV": "production",
"BASE_URL": "admin.tellform.com"
"BASE_URL": "kmc.tellform.com"
}
}
}
}
}