tellform/ecosystem.json

33 lines
943 B
JSON
Raw Normal View History

2016-04-12 04:35:28 +00:00
{
"apps" : [{
"name" : "tellform",
"script" : "/usr/local/bin/grunt",
2016-04-12 04:35:28 +00:00
}],
"deploy" : {
2016-04-20 05:31:36 +00:00
"stage" : {
"user" : "polydaic",
2016-04-12 04:52:33 +00:00
"host" : "159.203.42.158",
2016-04-12 04:35:28 +00:00
"ref" : "origin/master",
"repo" : "git@github.com:whitef0x0/tellform.git",
"path" : "/opt/deploy",
2016-04-24 18:22:04 +00:00
"post-deploy" : "npm install && bower install && pm2 startOrRestart ecosystem.json --env production",
2016-04-12 04:35:28 +00:00
"env" : {
2016-04-12 04:52:33 +00:00
"NODE_ENV": "production",
"BASE_URL": "stage.tellform.com"
2016-04-12 04:35:28 +00:00
}
2016-04-24 18:22:04 +00:00
},
"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"
}
}
}
2016-04-12 04:35:28 +00:00
}