-
-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathapp.json
60 lines (60 loc) · 1.42 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
56
57
58
59
60
{
"name": "scdlbot",
"description": "Telegram Bot for downloading MP3 rips of tracks/sets from SoundCloud, Bandcamp, YouTube with tags and artwork",
"repository": "https://github.com/gpchelkin/scdlbot",
"logo": "https://raw.githubusercontent.com/gpchelkin/scdlbot/master/telegram_settings/setuserpic.jpg",
"keywords": [
"python",
"telegram",
"bot",
"soundcloud",
"bandcamp",
"youtube",
"mixcloud",
"yandex",
"audio",
"music",
"download"
],
"buildpacks": [
{
"url": "https://github.com/gpchelkin/heroku-buildpack-ffmpeg-latest"
},
{
"url": "heroku/python"
}
],
"env": {
"TG_BOT_TOKEN": {
"description": "Telegram Bot API Token",
"required": true
},
"WEBHOOK_ENABLE": {
"description": "Use webhook for bot updates: 1, use polling (default): 0",
"value": "0",
"required": false
},
"WEBHOOK_APP_URL_ROOT": {
"description": "Your host URL like https://scdlbot.herokuapp.com, required for webhook mode",
"required": false
},
"HOST": {
"description": "Hostname to show in Syslog messages",
"value": "0.0.0.0",
"required": false
},
"HOSTNAME": {
"description": "Hostname to show in Syslog messages",
"value": "heroku",
"required": false
}
},
"formation": {
"web": {
"quantity": 0
},
"worker": {
"quantity": 1
}
}
}