-
Notifications
You must be signed in to change notification settings - Fork 14
/
app.json
40 lines (40 loc) · 1.15 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
{
"name": "SD GroupMusic Bot",
"logo": "https://telegra.ph/file/98b11c7bc2d7b3e5c2e15.jpg",
"description": "Open-Source bot to play songs in your Telegram's Group Voice Chat. Powered by PyTgCalls.",
"keywords": ["music", "voicechat", "telegram"],
"repository": "https://github.com/Sadew451/SD-GroupMusicBot",
"stack": "container",
"env": {
"SESSION_NAME": {
"description": "Pyrogram session string",
"required": true
},
"BOT_TOKEN": {
"description": "A bot token from @BotFather",
"required": true
},
"BOT_NAME": {
"description": "Your MusicPlayer Bot Name.",
"required": false,
"value": ""
},
"API_ID": {
"description": "App ID from my.telegram.org/apps",
"required": true
},
"API_HASH": {
"description": "App hash from my.telegram.org/apps",
"required": true
},
"SUDO_USERS": {
"description": "List of user IDs counted as admin everywhere (separated by space).",
"required": true
},
"DURATION_LIMIT": {
"description": "Max audio duration limit for downloads (minutes).",
"required": true,
"value": "10"
}
}
}