-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapp.json
30 lines (30 loc) · 841 Bytes
/
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
{
"name": "Music Stream Bot",
"description": "Bot to play songs in Telegram group voice chats. Powered by PyTgCalls.",
"keywords": ["music", "voicechat", "telegram"],
"logo": "https://telegra.ph/file/4c03ff6d25fc678a2fe08.jpg",
"repository": "https://github.com/ImJanindu/47MusicPlayerBot",
"stack": "container",
"env": {
"SESSION_NAME": {
"description": "Pyrogram session string",
"required": true
},
"BOT_TOKEN": {
"description": "A bot token from @BotFather",
"required": true
},
"API_ID": {
"description": "API_ID from my.telegram.org/apps",
"required": true
},
"API_HASH": {
"description": "API_HASH from my.telegram.org/apps",
"required": true
},
"OWNER_ID": {
"description": "Your Telegram ID",
"required": true
}
}
}