forked from freeCodeCamp/pantry-for-good
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
29 lines (29 loc) · 777 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": "FreeCodeCamp Pantry-for-Good",
"description": "A customizable food bank webapp",
"repository": "https://github.com/freeCodeCamp/Pantry-for-Good",
"addons": ["mongolab", "sendgrid"],
"env": {
"HOST_NAME": {
"description": "The hostname your site will be accessible at",
"value": "pantry-for-good.herokuapp.com",
"required": true
},
"GOOGLE_CLIENT_ID": {
"description": "Google+ Client ID",
"required": false
},
"GOOGLE_CLIENT_SECRET": {
"description": "Google+ Client Secret",
"required": false
},
"SENDGRID_API_KEY": {
"description": "Sendgrid Api Key",
"required": false
},
"SECRET": {
"description": "Session secret",
"generator": "secret"
}
}
}