-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathapp.json
44 lines (44 loc) · 1.24 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
{
"name": "VCBot",
"description": "Just another Telegram VCBot, to stream songs in VC",
"keywords": [
"telegram",
"vc bot"
],
"repository": "https://github.com/xditya/VCBot/",
"success_url": "https://t.me/BotzHub",
"stack": "container",
"env": {
"API_ID": {
"description": "Get this value from my.telegram.org!l",
"value": "",
"required": true
},
"API_HASH": {
"description": "Get this value from my.telegram.org!",
"value": "",
"required": true
},
"SESSION": {
"description": "A pyrogram session, get this value by running python3 sessiongen.py locally.",
"value": "",
"required": true
},
"PREFIX": {
"description": "Userbot Prefix to run the commands. Add your own or keep as default (!)",
"value": "!",
"required": false
},
"SUDOS": {
"description": "User ID of users who can use commands, split by space.",
"value": "",
"required": true
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}