forked from errbit/errbit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request errbit#1282 from errbit/chore/usable-heroku-review…
…-app Heroku review app: use a fixed admin email/password for easier review
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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":"[email protected]" | ||
}, | ||
"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", | ||
|