-
Notifications
You must be signed in to change notification settings - Fork 27
/
app.json
35 lines (35 loc) · 1.07 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
{
"name": "Pokéslack",
"description": "Get nearby Pokémon notifications to a Slack channel.",
"repository": "https://github.com/timwah/pokeslack",
"keywords": ["pokemon", "pokemon go", "slack"],
"env": {
"AUTH_SERVICE": {
"description": "Authentication service to use. (ptc or google)"
},
"USERNAME": {
"description": "Your username to login to the specified authentication service."
},
"PASSWORD": {
"description": "Your password to login to the specified authentication service."
},
"LOCATION_NAME": {
"description": "Location on which the map should be centered. This can be an address, co-ordinates or anything that Google Maps accepts."
},
"RARITY_LIMIT": {
"description": "Only notified for Pokémon at this rarity or higher.",
"value": "3"
},
"SLACK_WEBHOOK_URL": {
"description": "Looks like https://hooks.slack.com/services/XXX"
},
"NUM_STEPS": {
"description": "Number of steps to search.",
"value": "5"
},
"DISTANCE_UNIT": {
"description": "Unit of measurement to use (meters or miles)",
"value": "miles"
}
}
}