-
Notifications
You must be signed in to change notification settings - Fork 96
/
app.json
45 lines (45 loc) · 1.23 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
{
"name": "Telegram Voice Chat Music Player UserBot (VC-UserBot)",
"description": "Telegram UserBot to Play Audio in Telegram Voice Chats",
"repository": "https://github.com/LushaiMusic/vc-userbot",
"logo": "https://telegra.ph/file/9f670b987d2b3565a3bcb.jpg",
"keywords": [
"tgvc-userbot",
"telegram",
"userbot",
"voicechat",
"music",
"python",
"pyrogram",
"pytgcalls",
"tgcalls",
"voip"
],
"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
},
"SESSION_NAME": {
"description": "Session string, read the README to learn how to export it with Pyrogram",
"required": true
},
"PLUGIN": {
"description": "Voice Chat Smart Plugin to enable, must be one of: player/channel/recorder/radio",
"value": "player",
"required": true
}
},
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "heroku/python"
}
]
}