forked from TheHamkerCat/WilliamButcherBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
84 lines (84 loc) · 2.89 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "WilliamButcherBot",
"description": "Telegram Group Management Bot Written In Python Using Pyrogram.",
"repository": "https://github.com/thehamkercat/WilliamButcherBot",
"logo": "https://upload.wikimedia.org/wikipedia/commons/c/c3/Python-logo-notext.svg",
"keywords": [
"python3",
"telegram",
"bot",
"youtube",
"telegram-bot",
"pyrogram"
],
"stack": "container",
"env": {
"BOT_TOKEN": {
"description": "Obtain a Telegram bot token by contacting @BotFather",
"required": true
},
"API_ID": {
"description": "API_ID of your Telegram Account my.telegram.org/apps",
"required": true
},
"API_HASH": {
"description": "API_HASH of your Telegram Account my.telegram.org/apps",
"required": true
},
"SESSION_STRING": {
"description": "Need for Userbot Module So u can execute .sh & .l cmd",
"required": false
},
"SUDO_USERS_ID": {
"description": "Sudo users have full access to everythin, don't trust anyone... ex:- 123456 654311 123456",
"required": true
},
"LOG_GROUP_ID": {
"description": "For logs channel to note down important bot level events, recommend to make this public. ex: '-123456'",
"required": true
},
"GBAN_LOG_GROUP_ID": {
"description": "gban logs. ex: '-123456'",
"required": true
},
"FERNET_ENCRYPTION_KEY": {
"description": "Don't change this value",
"value": "iKMq0WZMnJKjMQxZWKtv-cplMuF_LoyshXj0XbTGGWM=",
"required": true
},
"WELCOME_DELAY_KICK_SEC": {
"value": "300",
"required": true
},
"MONGO_DB_URI": {
"description": "Get From Here. https://telegra.ph/How-To-get-Mongodb-URI-04-06",
"required": true
},
"ARQ_API_URL": {
"description": "For Music Downloading And Many More Things... Don't change this value",
"value": "https://thearq.tech",
"required": true
},
"MESSAGE_DUMP_CHAT": {
"description": "Chat_id of the group where useless things will go",
"required": true
},
"ARQ_API_KEY": {
"description": "Get this from @ARQRobot.",
"required": true
},
"LOG_MENTIONS": {
"description": "Fill 1 to turn this one, or 0 to turn it off.",
"required": true
},
"USERBOT_PREFIX": {
"description": "Userbot command prefix, Leave it empty if you don't know what that is.",
"required": false
},
"RSS_DELAY": {
"description": "Delay in which RSS will send updates in chat",
"value": 300,
"required": true
}
}
}