-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathapp.json
47 lines (47 loc) · 1.41 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
{
"name": "Telegram VCPlayer Bot",
"description": "Telegram Voice-Chat Music Player Bot. Developed and maintained by SkTechHub.",
"repository": "https://github.com/kshubham506/vcplayerbot",
"logo": "https://i.postimg.cc/QdH3XrxV/Screenshot-2021-05-05-203005-removebg-preview.png",
"keywords": [
"vcplayer",
"vcplayerbot",
"voicechat",
"music",
"python",
"telegram",
"bot",
"youtube",
"telegram-bot",
"pyrogram",
"pytgcalls",
"tgcalls",
"telegram-vcbot",
"telegram-musicbot"
],
"stack": "container",
"env": {
"API_ID": {
"description": "API ID of your Telegram Account. Get it from https://my.telegram.org/apps",
"required": true
},
"API_HASH": {
"description": "API HASH of your Telegram Account. Get it from https://my.telegram.org/apps",
"required": true
},
"BOT_TOKEN": {
"description": "BOT TOKEN for the music bot. Get this from @BotFather.",
"required": true
},
"USERBOT_SESSION": {
"description": "USER BOT Session string. Generate this using the generateSession.py script present in github repo.",
"required": true
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}