forked from sguha00/southwest-checkin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
37 lines (37 loc) · 1.2 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "Southwest Checkin",
"description": "This app automatically checks you into a southwest airlines flight.",
"keywords": ["southwest airlines", "checkin", "rails"],
"website": "https://github.com/davidkassa/southwest-checkin",
"repository": "https://github.com/davidkassa/southwest-checkin",
"success_url": "/",
"scripts": {
"postdeploy": "bundle exec rake db:migrate db:seed"
},
"env": {
"RAILS_ENV": "production",
"RACK_ENV": "production",
"RAILS_SERVE_STATIC_FILES": "true",
"MAILER_DOMAIN": "heroku.com",
"REDIS_PROVIDER": "REDISCLOUD_URL",
"SITE_URL": {
"description": "The url of the site."
},
"SITE_NAME": {
"description": "The name of the site in emails.",
"value": "Southwest Checkin"
},
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"MAILER_DEFAULT_FROM_EMAIL": {
"description": "The default address emails are sent from."
},
"MAILER_DEFAULT_REPLY_TO": {
"description": "The default email reply to.",
"required": false
}
},
"addons": ["rediscloud:30", "heroku-postgresql", "mailgun:starter"]
}