forked from kshubham506/vcplayerbot
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
59 lines (59 loc) · 1.93 KB
/
app.json
File metadata and controls
59 lines (59 loc) · 1.93 KB
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
{
"name": "Telegram VCPlayer Bot",
"description": "Telegram Voice-Chat Music Player Bot. Dveloped and maintained by SkTechHub.",
"repository": "https://t.me/ABISHOV_27",
"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
},
"MONGO_URL": {
"description": "MONGO Database URI. Leave it blank as it's not compulsory.",
"required": false
},
"MODE": {
"description": "Default is multiple, which means bot will be allowed only in one group. Allowed [single, multiple]",
"required": false
},
"AUTO_LEAVE": {
"description": "False by default. Allows the user bot to leave the grp at regualr intervals automatically. Allowed [on, off]",
"required": false
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}