-
Notifications
You must be signed in to change notification settings - Fork 157
/
app.json
43 lines (43 loc) · 1.06 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
{
"name": "Telegram Music Bot",
"description": "Telegram Music Bot for YouTube/SoundCloud/Mixcloud",
"keywords": [
"telegram",
"bot",
"telegram_bot",
"music",
"youtube",
"soundcloud",
"mixcloud",
"youtube-dl",
"python"
],
"repository": "https://github.com/dashezup/tgmusicbot",
"logo": "https://i.imgur.com/xeG3yYL.jpg",
"env": {
"API_ID": {
"description": "api_id part of your Telegram API Key from my.telegram.org/apps",
"required": true
},
"API_HASH": {
"description": "api_hash part of your Telegram API Key from my.telegram.org/apps",
"required": true
},
"BOT_TOKEN": {
"description": "Bot token get from BotFather https://t.me/BotFather",
"required": true
},
"MUSIC_CHATS": {
"description": "One or more user/group username/id the bot serves to, separate with space",
"required": true
}
},
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "heroku/python"
}
]
}