added ecosystem.json to .gitignore

This commit is contained in:
David Baldwynn 2016-05-20 12:52:18 -07:00
parent e9f86a9c62
commit e8208b085a
2 changed files with 1 additions and 45 deletions

2
.gitignore vendored
View File

@ -1,4 +1,4 @@
ecosystem.js
ecosystem.json
public/dist/
npm-debug.*
docs/Oscar_Credentials.md

View File

@ -1,44 +0,0 @@
{
"apps" : [{
"name" : "tellform",
"script" : "/usr/local/bin/grunt",
}],
"deploy" : {
"stage" : {
"user" : "polydaic",
"host" : "159.203.42.158",
"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": "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": "kmc.tellform.com"
}
}
}
}