-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
63 lines (61 loc) · 1.96 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
{
"name": "TheBlackBot-02",
"description": "Autofilter Bot",
"logo": "",
"keywords": ["telegram", "auto-filter", "MrMKN"],
"website": "https://github.com/TheBlackxyz/TheBlackBot",
"repository": "https://github.com/TheBlackxyz/TheBlackBot",
"env": {
"WEBHOOK": {
"description": "True/False if your server is web support required? the value is True else False",
"value": "True",
"required": true
},
"BOT_TOKEN": {
"description": "Your bot token.",
"required": true
},
"API_ID": {
"description": "Get this value from https://my.telegram.org",
"required": true
},
"API_HASH": {
"description": "Get this value from https://my.telegram.org",
"required": true
},
"CHANNELS": {
"description": "Username or ID of channel or group. Separate multiple IDs by space.",
"required": false
},
"ADMINS": {
"description": "Username or ID of Admin. Separate multiple Admins by space.",
"required": true
},
"LOG_CHANNEL": {
"description": "Bot Logs,Give a channel id with -100xxxxxxx",
"required": true
},
"AUTH_CHANNEL": {
"description": "ID of channel.Make sure bot is admin in this channel. Without subscribing this channel users cannot use bot.",
"required": false
},
"DATABASE_URI": {
"description": "mongoDB URI.",
"required": true
},
"DATABASE_NAME": {
"description": "Name of the database in mongoDB.",
"value": "Cluster0",
"required": false
}
},
"addons": [],
"buildpacks": [{
"url": "koyeb/python"
}],
"formation": {
"worker": {
"quantity": 1,
"size": "eco"
}
}