-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
29 lines (29 loc) · 820 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
{
"name": "CUMC Website",
"description": "A heroku-ready website for the Cambridge University Mountaineering Club",
"repository": "https://github.com/frijjoasis/cumc-org-uk",
"env": {
"SECRET": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret",
"required": true
},
"PORT": {
"description": "The port this application is running on.",
"required": false
},
"CLIENT_ID": {
"description": "OAuth2 Google API client credentials, for use with Raven. (ID)",
"required": true
},
"CLIENT_SECRET": {
"description": "OAuth2 Google API client credentials, for use with Raven. (Secret)",
"required": true
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev"
}
]
}