forked from dtcarls/fantasy_football_chat_bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
43 lines (43 loc) · 957 Bytes
/
app.json
File metadata and controls
43 lines (43 loc) · 957 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "Fantasy Football Chat Bot",
"description": "ESPN FF GroupMe Chat Bot.",
"keywords": [
"fantasy football",
"espn",
"groupme",
"chat bot",
"ff"
],
"website": "https://github.com/dtcarls/ff_bot/",
"repository": "https://github.com/dtcarls/ff_bot/",
"env": {
"BOT_ID": {
"description": "GroupMe Bot ID",
"value": "1"
},
"LEAGUE_ID": {
"description": "ESPN League ID",
"value": "1"
},
"LEAGUE_YEAR": {
"description": "ESPN League Year",
"value": "2018"
},
"TIMEZONE": {
"description": "League timezone for sending messages",
"value": "America/New_York"
},
"START_DATE": {
"description": "Season Start Date",
"value": "2018-09-05"
},
"END_DATE": {
"description": "Season End Date",
"value": "2018-12-26"
},
"INIT_MSG": {
"description": "Bot Init Message",
"value": "Hi"
}
}
}