forked from HaughtCodeworks/cfp-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
50 lines (50 loc) · 1.19 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
{
"name": "CFP-App",
"description": "Conference call for proposal management application by Ruby Central",
"keywords": [
"cfp",
"proposals",
"conference"
],
"addons": [
"sendgrid:starter",
"heroku-postgresql"
],
"scripts": {
"postdeploy": "bundle exec rake db:setup"
},
"env": {
"TIMEZONE": {
"description": "Timezone for the Rails app",
"value": "Mountain Time (US & Canada)"
},
"MAIL_HOST": {
"description": "The hostname from which emails will originate.",
"required": true
},
"MAIL_FROM": {
"description": "The email address from which emails will originate.",
"required": true
},
"SECRET_TOKEN": {
"description": "The secret token for the application",
"generator": "secret"
},
"GITHUB_KEY": {
"description": "GitHub application key",
"required": true
},
"GITHUB_SECRET": {
"description": "GitHub application secret",
"required": true
},
"TWITTER_KEY": {
"description": "Twitter application key",
"required": true
},
"TWITTER_SECRET": {
"description": "Twitter application secret",
"required": true
}
}
}