-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
55 lines (55 loc) · 1.1 KB
/
app.json
File metadata and controls
55 lines (55 loc) · 1.1 KB
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
51
52
53
54
55
{
"name": "libre-weather-api",
"description": "LibreWeather... API",
"keywords": [
"weather",
"api",
"json"
],
"repository": "https://github.com/libreweather/libre-weather-api",
"website": "https://api.libreweather.com/docs",
"scripts": {
},
"env": {
"OWM_KEY": {
"description": "Open Weather Maps API Key",
"required": true
},
"SCOPE": {
"description": "Logger scope",
"value": "API",
"required": true
},
"LOG_LEVEL": {
"description": "Winston log level",
"value": "error"
},
"ADMIN_USER": {
"description": "Admin user username",
"value": "admin",
"required": true
},
"ADMIN_PASS": {
"description": "Admin user password",
"value": "password",
"required": true
},
"NODE_ENV": {
"description": "Node environment (production or development)",
"value": "production",
"required": true
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [],
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}