forked from favll/pogom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
31 lines (31 loc) · 1000 Bytes
/
app.json
File metadata and controls
31 lines (31 loc) · 1000 Bytes
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
{
"name": "PogoMap",
"description": "The fastest Pokémon Go Map available",
"repository": "https://github.com/favll/pogom",
"keywords": ["pokemon", "pokemon go"],
"env": {
"AUTH_SERVICE": {
"description": "Authentication service to use. [ptc|google]"
},
"USERNAME": {
"description": "Your username to login to the specified authentication service."
},
"PASSWORD": {
"description": "Your password to login to the specified authentication service."
},
"LOCATION": {
"description": "Location on which the map should be centered. This can be an address, co-ordinates or any string that Google Maps accepts."
},
"GMAPS_KEY": {
"description": "A Google Maps API key for this application."
},
"RADIUS": {
"description": "Search radius in meters.",
"value": "2000"
},
"EXTRA_ARGS": {
"description": "Any extra arguments that you want to pass to runserver.py.",
"required": false
}
}
}