This repository has been archived by the owner on Jul 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathapp.json
85 lines (85 loc) · 2.59 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "Reservations Example",
"description": "An example of the Reservations app. Before continuing please visit: https://github.com/YaleSTC/reservations/wiki/Heroku-Deployment-Guide",
"keywords": ["Rails"],
"repository": "https://github.com/YaleSTC/reservations",
"website": "http://yalestc.github.io/reservations",
"success_url": "/",
"scripts": {
"postdeploy": "bundle exec rake db:schema:load db:seed minimal=true"
},
"env": {
"BUILDPACK_URL": "https://github.com/orenyk/heroku-buildpack-ruby",
"DEVISE_SECRET_KEY": {
"description": "secret key used by Devise for authentication",
"generator": "secret"
},
"DEVISE_PEPPER": {
"description": "pepper used by Devise to generate encrypted passwords",
"generator": "secret"
},
"SECRET_KEY_BASE": {
"description": "secret key used to sign cookies (in secrets.yml)",
"generator": "secret"
},
"RAILS_HOST_NAME": {
"description": "the host name for your application (e.g. APP_NAME.herokuapp.com)"
},
"RES_SMTP_DOMAIN": {
"description": "SMTP server domain",
"value": "heroku.com"
},
"RES_SMTP_PORT": {
"description": "SMTP server port",
"value": "587"
},
"RES_SMTP_ADDRESS": {
"description": "SMTP server address",
"value": "smtp.sendgrid.net"
},
"RES_SMTP_AUTH": {
"description": "whether or not to use authentication for SMTP",
"value": "1"
},
"RES_SMTP_USERNAME": {
"description": "SMTP authentication username",
"value": "(fill in SENDGRID_USERNAME post-deployment)"
},
"RES_SMTP_PASSWORD": {
"description": "SMTP authentication password",
"value": "(fill in SENDGRID_PASSWORD post-deployment)"
},
"RAILS_SERVE_STATIC_FILES": {
"description": "whether or not to serve static assets",
"value": "1"
},
"RAILS_GROUPS": {
"description": "extra groups to install for Heroku",
"value": "heroku"
},
"ENABLE_PAPERCLIP_S3": {
"description": "enables storage of image and file uploads on Amazon S3",
"value": "1"
},
"S3_BUCKET_NAME": {
"description": "Amazon S3 bucket name"
},
"AWS_ACCESS_KEY_ID": {
"description": "AWS access key ID string"
},
"AWS_SECRET_ACCESS_KEY": {
"description": "AWS secret access key"
},
"AWS_S3_REGION": {
"description": "AWS S3 bucket region"
},
"DATABASE_URL": {
"description": "Copy in CLEARDB_DATABASE_URL and change mysql to mysql2"
}
},
"addons": [
"cleardb:ignite",
"sendgrid:starter",
"scheduler:standard"
]
}