-
-
Notifications
You must be signed in to change notification settings - Fork 348
/
app.json
39 lines (39 loc) · 1.14 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
{
"name": "Music Bot",
"description": "Open-Source bot to play songs in your Telegram's Group Voice Chat. Powered by PyTgCalls.",
"logo": "https://telegra.ph/file/eba02aefd3fef2f02623d.jpg",
"keywords": ["music", "voicechat", "telegram"],
"repository": "https://github.com/ImJanindu/GroupMusicBot",
"stack": "container",
"env": {
"SESSION_NAME": {
"description": "Pyrogram session string"
},
"BOT_TOKEN": {
"description": "A bot token from @BotFather"
},
"START_IMG": {
"description": "Telegraph Link Of An Image",
"required": false
},
"API_ID": {
"description": "App ID from my.telegram.org/apps"
},
"API_HASH": {
"description": "App hash from my.telegram.org/apps"
},
"SUDO_USERS": {
"description": "List of user IDs counted as admin everywhere (separated by space)."
},
"ARQ_API_KEY": {
"description": "Get It From @ArqRoBot"
},
"BOT_USERNAME": {
"description": "Your Bot's Username Without @."
},
"DURATION_LIMIT": {
"description": "Max audio duration limit for downloads (minutes).",
"value": "10"
}
}
}