-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.json
45 lines (45 loc) · 1.39 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
{
"name": "Tesla MusicBot",
"description": "Telegram VoiceChat Bot, Written In Python Using Pytgcalls & Pyrogram.",
"keywords": [
"telegram",
"MusicBot"
],
"logo": "https://imgur.com/HYdV6PJ.png",
"repository": "https://github.com/MadBoy-X/MusicBot/",
"success_url": "https://github.com/MadBoy-X/MusicBot/",
"stack": "container",
"env": {
"API_ID": {
"description": "Get this value from my.telegram.org !",
"value": "",
"required": true
},
"API_HASH": {
"description": "Get this value from my.telegram.org !",
"value": "",
"required": true
},
"SESSION": {
"description": "A pyrogram session, Get it from here https://replit.com/@madboy482/Pyrogram-Session or get it 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"
}
}
}