-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
45 lines (45 loc) · 1.14 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
{
"name" : "Tankmeister",
"description": "Show the closest empty cars",
"keywords": [
"drivenow",
"fuelling",
"car2go",
"tanking",
"bonus minutes",
"multicity"
],
"website": "https://tankmeister.de",
"repository": "https://github.com/gorenje/tankmeister",
"logo": "https://tankmeister.de/images/appicon_512x512.png",
"env": {
"RACK_ENV": {
"description": "Rack environment",
"value": "production"
},
"HOSTS_WITH_NO_SSL": {
"description": "Comma separated list of non-ssl hosts",
"value": "localhost"
},
"GOOGLE_API_KEY": {
"description": "Google maps api key",
"required": true
},
"CAR2GO_CONSUMER_KEY": {
"description": "Car2Go oauth consumer key.",
"required": true
},
"CARJUMP_SECRET": {
"description": "Car Jump Secret token - used for DriveNow.",
"required": true
},
"ACME_KEY[ONE]": {
"description": "Let's encrypt key (this is the longer one)",
"required": false
},
"ACME_TOKEN[ONE]": {
"description": "Let's encrypt token (this is the shorter one)",
"required": false
}
}
}