Skip to content

Commit

Permalink
Merge pull request #1282 from errbit/chore/usable-heroku-review-app
Browse files Browse the repository at this point in the history
Heroku review app: use a fixed admin email/password for easier review
  • Loading branch information
rud committed Jul 11, 2018
2 parents d86dead + 06ba32e commit 862c2a2
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,37 @@
"ERRBIT_ENFORCE_SSL": "true",
"GEMFILE_RUBY_VERSION": "2.3.3",
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"EMAIL_DELIVERY_METHOD": "smtp",
"SMTP_SERVER": "smtp.sendgrid.net"
},
"environments": {
"test": {
"env": {
"ERRBIT_ENFORCE_SSL": "true",
"GEMFILE_RUBY_VERSION": "2.3.3",
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"EMAIL_DELIVERY_METHOD": "smtp",
"SMTP_SERVER": "smtp.sendgrid.net",
"ERRBIT_ADMIN_EMAIL": {
"description": "Set the demo admin login for ease of PR review",
"value":"admin@example.com"
},
"ERRBIT_ADMIN_PASSWORD": {
"description": "Set the demo admin password for ease of PR review",
"value": "demo-admin"
}
},
"scripts": {
"postdeploy": "bundle exec rake errbit:bootstrap"
}
}
},
"addons": [
"mongolab:sandbox",
"scheduler:standard",
Expand Down

0 comments on commit 862c2a2

Please sign in to comment.