-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.json
39 lines (39 loc) · 883 Bytes
/
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
{
"name": "mangrove-website",
"description": "Mangrove's inspiring website",
"keywords": ["mangrove"],
"website": "https://www.mangrove.io",
"repository": "https://github.com/MeetMangrove/mangrove-website",
"success_url": "/",
"env": {
"SECRET": {
"description": "secret key used to protect cookies and login",
"generator": "secret"
},
"SLACK_CLIENT_ID": {
"required": true
},
"SLACK_CLIENT_SECRET": {
"required": true
},
"SLACK_TEAM_IDS": {
"description": "comma-separated IDs of Slack teams allowed for login",
"required": true
},
"AIRTABLE_API_KEY": {
"required": true
},
"AIRTABLE_BASE_KEY": {
"required": true
},
"GOOGLE_MAPS_API_KEY": {
"required": true
}
},
"addons": [
{
"plan": "heroku-redis:hobby-dev",
"as": "REDIS"
}
]
}