forked from LEGEND-OS/MUSIC-VC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
65 lines (65 loc) · 1.85 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
64
65
{
"name": "Legend Music Player",
"description": "A Telegram Music Bot written in Python using Pyrogram and Py-Tgcalls",
"repository": "https://github.com/LEGEND-OS/MUSIC-VC",
"logo": "https://github.com/LEGEND-OS/MUSIC-VC/raw/main/theme/logo.png",
"stack": "container",
"keywords": [
"telegram",
"voicechat",
"userbot",
"music",
"player",
"python",
"pyrogram",
"py-tgcalls",
"musicplayer"
],
"env": {
"API_ID": {
"description": "Telegram app id, get it from https://my.telegram.org/apps",
"required": true
},
"API_HASH": {
"description": "Telegram app hash, get it from https://my.telegram.org/apps",
"required": true
},
"PYROGRAM_SESSION": {
"description": "Pyrogram session string, get it from https://replit.com/@AsmSafone/genStr",
"required": true
},
"SUDOERS": {
"description": "ID of sudo users who have special access (separate multiple ids with space)",
"required": false
},
"PREFIX": {
"description": "Bot commad prefix or handler (separate multiple prefix with space). By DefaultU Can Set <$>",
"value": "$",
"required": true
},
"LANGUAGE": {
"description": "An available bot language (read the README.md for more info)",
"value": "en",
"required": false
},
"CUSTOM_QUALITY": {
"description": "An available stream quality (read the README.md for more info)",
"value": "high",
"required": false
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "heroku/python"
}
]
}