forked from TheHamkerCat/SpamProtectionRobot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
40 lines (40 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
{
"name": "SpamProtectionRobot",
"description": "Anti Spam/NSFW Telegram Bot Written In Python With Pyrogram.",
"repository": "https://github.com/thehamkercat/SpamProtectionRobot",
"logo": "https://upload.wikimedia.org/wikipedia/commons/c/c3/Python-logo-notext.svg",
"keywords": [
"python3",
"telegram",
"bot",
"anti spam bot",
"telegram-bot",
"pyrogram",
"anti nsfw bot",
"SpamProtectionRobot",
"Spam Protection Bot"
],
"stack": "container",
"env": {
"BOT_TOKEN": {
"description": "Obtain a Telegram bot oken by contacting @BotFather",
"required": true
},
"SUDOERS": {
"description": "Sudo user's ids, Ex:- 123456654 654654311 1546523456",
"required": true
},
"NSFW_LOG_CHANNEL": {
"description": "ID of the channel where NSFW logs should be forwarded. Ex: '-123456'",
"required": true
},
"SPAM_LOG_CHANNEL": {
"description": "ID of the channel where SPAM logs should be forwarded. Ex: '-123456'",
"required": true
},
"ARQ_API_KEY": {
"description": "Get this from @ARQRobot.",
"required": true
}
}
}