-
Notifications
You must be signed in to change notification settings - Fork 12
/
app.json
50 lines (50 loc) · 1.27 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": "warframe-status",
"description": "Warframe status serves as an API for Warframe community projects",
"keywords": ["warframe", "status", "api", "json"],
"repository": "https://github.com/WFCD/warframe-status",
"website": "https://docs.warframestat.us",
"scripts": {},
"env": {
"CACHE_TIMEOUT": {
"description": "How long to wait to fetch a new instance of the worldstate",
"value": "60000"
},
"HOSTNAME": {
"description": "Hostname to bind express to",
"value": "0.0.0.0"
},
"LOG_LEVEL": {
"description": "Winston log level",
"value": "error"
},
"TWITTER_TIMEOUT": {
"description": "Milliseconds between each request batch to Twitter.",
"value": "600000"
},
"TWITTER_KEY": {
"description": "Consumer key for Twitter API Access.",
"required": false
},
"TWITTER_SECRET": {
"description": "Consumer secret for Twitter API Access.",
"required": false
},
"TWITTER_BEARER_TOKEN": {
"description": "Application-only bearer token for Twitter API Access",
"required": false
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [],
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}