-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
38 lines (38 loc) · 959 Bytes
/
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
{
"name": "Kaggle Discord Bot",
"description": "Notify remaining days of kaggle competitions to Discord.",
"repository": "https://github.com/regonn/kaggle-discord-bot",
"keywords": ["kaggle", "discord"],
"env": {
"LOCALE": {
"description": "Now supports English(en) or Japanese(ja).",
"value": "en or ja"
},
"DISCORD_TOKEN": {
"description": "Discord Token",
"value": "your token"
},
"DISCORD_CHANNEL_ID": {
"description": "Discord Channel ID",
"value": "your channel id"
},
"KAGGLE_KEY": {
"description": "kaggle key",
"value": "your key"
},
"KAGGLE_USERNAME": {
"description": "kaggle username",
"value": "your username"
},
"PRODUCTION": {
"description": "Production",
"value": true
}
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-python"
}
],
"addons": ["scheduler:standard"]
}