forked from dtcarls/fantasy_football_chat_bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
53 lines (53 loc) · 1.33 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
{
"name": "Fantasy Football Chat Bot",
"description": "ESPN Fantasy Football GroupMe, Slack, and Discord Chat Bot.",
"keywords": [
"fantasy football",
"espn",
"groupme",
"slack",
"discord",
"chat bot",
"ff"
],
"website": "https://github.com/dtcarls/fantasy_football_chat_bot/",
"repository": "https://github.com/dtcarls/fantasy_football_chat_bot/",
"env": {
"BOT_ID": {
"description": "GroupMe Bot ID",
"value": "1"
},
"SLACK_WEBHOOK_URL": {
"description": "Slack Webhook URL",
"value": "1"
},
"DISCORD_WEBHOOK_URL": {
"description": "Discord Webhook URL",
"value": "1"
},
"LEAGUE_ID": {
"description": "ESPN League ID",
"value": "1"
},
"LEAGUE_YEAR": {
"description": "ESPN League Year",
"value": "2020"
},
"TIMEZONE": {
"description": "League timezone for sending messages",
"value": "America/New_York"
},
"START_DATE": {
"description": "Season Start Date",
"value": "2020-09-10"
},
"END_DATE": {
"description": "Season End Date",
"value": "2020-12-30"
},
"INIT_MSG": {
"description": "Bot Init Message",
"value": "Successfully installed https://github.com/dtcarls/fantasy_football_chat_bot you can now remove this init_msg"
}
}
}