-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
38 lines (38 loc) · 1.06 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
{
"name": "TotalBriecall",
"description": "Prototype for Total Briecall",
"repository": "https://github.com/teralogics/TotalBriecall",
"logo": "http://total-briecall.herokuapp.com/img/logo.svg",
"keywords": ["node", "express", "static", "brie"],
"addons": [
"mongolab",
"newrelic"
],
"env": {
"SECRET": {
"description": "The application secret used to encrypt cookie and session data.",
"generator": "secret",
"required": false
},
"SESSIONLENGTH": {
"description": "The session length in milliseconds.",
"value": "3600000000",
"required": false
},
"FACEBOOK_APPID": {
"description": "The Facebook App ID used to for sharing.",
"value": "",
"required": false
},
"OPENFDA_APIKEY": {
"description": "The openFDA API key. Providing this allows more requests per minute/per day",
"value": "",
"required": false
},
"STATUS_PAGE_IO_URL": {
"description": "The url for your StatusPage.io service",
"value": "",
"required": false
}
}
}