tellform/ecosystem.json

36 lines
879 B
JSON
Raw Normal View History

2016-05-20 20:09:17 +00:00
{
"apps" : [{
2016-05-20 21:11:37 +00:00
"name" : "tellform",
2016-05-20 21:25:02 +00:00
"script" : "server.js",
2016-05-20 21:13:35 +00:00
"instances": "max",
"exec_mode": "cluster",
"max_memory_restart" : "200M"
2016-05-20 20:28:27 +00:00
}],
2016-05-20 20:09:17 +00:00
"deploy" : {
2017-03-06 22:07:20 +00:00
"stage": {
"user": "polydaic",
"host": "159.203.42.158",
"ref": "origin/stage",
2017-04-23 20:24:33 +00:00
"repo": "git@github.com:tellform/tellform.git",
2017-03-06 22:07:20 +00:00
"path": "/opt/deploy",
"post-deploy": "npm install && pm2 startOrGracefulReload ecosystem.json --env production",
"env": {
"NODE_ENV": "production",
2016-05-20 20:09:17 +00:00
"BASE_URL": "stage.tellform.com"
2017-03-06 22:07:20 +00:00
}
2016-05-20 20:09:17 +00:00
},
2017-03-06 22:07:20 +00:00
"prod": {
"user": "polydaic",
"host": "159.203.33.182",
"ref": "origin/master",
2017-04-23 20:24:33 +00:00
"repo": "git@github.com:tellform/tellform.git",
2017-03-06 22:07:20 +00:00
"path": "/opt/deploy",
"post-deploy": "npm install && pm2 startOrGracefulReload ecosystem.json --env production",
"env": {
"NODE_ENV": "production",
"BASE_URL": "admin.tellform.com"
}
}
}
2016-05-20 20:09:17 +00:00
}