-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
47 lines (47 loc) · 1.35 KB
/
app.json
File metadata and controls
47 lines (47 loc) · 1.35 KB
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
{
"name": "Kaggle Kernel Notification",
"description": "Notify new kaggle kernels to Slack or LINE",
"repository": "https://github.com/Doarakko/kaggle-kernel-notification",
"logo": "https://avatars0.githubusercontent.com/u/1336944",
"keywords": [
"kaggle",
"kernel",
"notification",
"slack",
"line"
],
"env": {
"SLACK_WEBHOOK_URL": {
"description": "You only need to enter slack or line.",
"value": "your webhook url"
},
"LINE_NOTIFY_TOKEN": {
"description": "You only need to enter slack or line.",
"value": "your line notify token"
},
"POST": {
"description": "slack or line",
"value": "slack"
},
"COMPETITION_NAME": {
"description": "Get competition name using kaggle command.",
"value": "jigsaw-unintended-bias-in-toxicity-classification"
},
"KAGGLE_KEY": {
"description": "kaggle key",
"value": "your key"
},
"KAGGLE_USERNAME": {
"description": "kaggle username",
"value": "your username"
}
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-python"
}
],
"addons": [
"scheduler:standard"
]
}