forked from LandonPatmore/yahoo-fantasy-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
55 lines (55 loc) · 1.32 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
51
52
53
54
55
{
"name": "Yahoo Fantasy Bot",
"description": "Bot that alerts users about various things happening in their Yahoo Fantasy Sports league. Can be used with Discord, GroupMe, and Slack",
"keywords": [
"fantasy football",
"yahoo",
"groupme",
"discord",
"slack",
"chat bot",
"ff"
],
"website": "https://github.com/LandonPatmore/yahoo-fantasy-bot",
"repository": "https://github.com/LandonPatmore/yahoo-fantasy-bot",
"env": {
"GROUP_ME_BOT_ID": {
"description": "GroupMe Bot ID",
"value": "",
"required": false
},
"DISCORD_WEBHOOK_URL": {
"description": "Discord Web Hook URL",
"value": "",
"required": false
},
"SLACK_WEBHOOK_URL": {
"description": "Slack Web Hook URL",
"value": "",
"required": false
},
"YAHOO_CLIENT_ID": {
"description": "Yahoo Client ID",
"value": "",
"required": true
},
"YAHOO_CLIENT_SECRET": {
"description": "Yahoo Client Secret",
"value": "",
"required": true
},
"YAHOO_GAME_KEY": {
"description": "Yahoo Game Key: (NFL, NBA, MLB)",
"value": "",
"required": true
},
"YAHOO_LEAGUE_ID": {
"description": "Yahoo League ID",
"value": "",
"required": true
}
},
"addons": [
"heroku-postgresql"
]
}