This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 746
/
app.json
63 lines (63 loc) · 1.52 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
61
62
63
{
"name": "Telegram Voice Chat Bot",
"description": "Telegram Voice-Chat Bot Written In Python Using Pytgcalls & Pyrogram.",
"repository": "https://github.com/thehamkercat/Telegram_VC_Bot",
"logo": "https://i.imgur.com/8S8NVy0.png",
"keywords": [
"python",
"telegram",
"bot",
"voicechat",
"youtube",
"telegram-bot",
"pyrogram",
"pytgcalls",
"tgcalls",
"jiosaavn",
"telegram-vcbot",
"telegram-musicbot"
],
"stack": "heroku-20",
"env": {
"API_ID": {
"description": "API_ID of your Telegram Account my.telegram.org/apps",
"required": true
},
"API_HASH": {
"description": "API_HASH of your Telegram Account my.telegram.org/apps",
"required": true
},
"SESSION_STRING": {
"description": "Session string, Check the readme if you don't know how to get this.",
"required": true
},
"ARQ_API_KEY": {
"description": "Get this from @ARQRobot.",
"required": true
},
"DEFAULT_SERVICE": {
"description": "Must be one of youtube/saavn.",
"value": "saavn",
"required": true
},
"BITRATE": {
"description": "Must be 512/320.",
"value": "512",
"required": true
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "heroku/python"
}
]
}