-
Notifications
You must be signed in to change notification settings - Fork 454
Expand file tree
/
Copy pathapp.json
More file actions
85 lines (85 loc) · 2.36 KB
/
Copy pathapp.json
File metadata and controls
85 lines (85 loc) · 2.36 KB
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
85
{
"name": "DreamxBotz Auto Filter Bot",
"description": "Telegram auto-filter bot for indexing channel files and searching them quickly.",
"stack": "container",
"keywords": [
"telegram",
"auto-filter",
"filter",
"pyrogram",
"media",
"search",
"channel",
"index",
"inline"
],
"website": "https://github.com/DreamXBotz/Auto_Filter_Bot.git",
"repository": "https://github.com/DreamXBotz/Auto_Filter_Bot.git",
"env": {
"BOT_TOKEN": {
"description": "Telegram bot token from BotFather.",
"required": true
},
"API_ID": {
"description": "Telegram API ID from https://my.telegram.org.",
"required": true
},
"API_HASH": {
"description": "Telegram API hash from https://my.telegram.org.",
"required": true
},
"CHANNELS": {
"description": "Channel or group usernames/IDs for indexing. Separate multiple values by spaces.",
"required": false
},
"ADMINS": {
"description": "Admin Telegram user IDs or usernames. Separate multiple values by spaces.",
"required": true
},
"PICS": {
"description": "Optional space-separated image URLs.",
"required": false
},
"LOG_CHANNEL": {
"description": "Telegram log channel ID, usually starts with -100.",
"required": true
},
"AUTH_USERS": {
"description": "Optional allowed user IDs/usernames for inline search. Separate multiple values by spaces.",
"required": false
},
"AUTH_CHANNELS": {
"description": "Optional force subscription channel IDs. Bot must be admin in these channels.",
"required": false
},
"DATABASE_URI": {
"description": "MongoDB URI from https://www.mongodb.com.",
"required": true
},
"DATABASE_URI2": {
"description": "Optional second MongoDB URI. Required only when MULTIPLE_DB is enabled.",
"required": false
},
"DATABASE_NAME": {
"description": "MongoDB database name.",
"required": false
},
"COLLECTION_NAME": {
"description": "MongoDB collection name. Use a unique collection name if sharing one database across multiple bots.",
"value": "dreamcinezone_files",
"required": false
}
},
"addons": [],
"buildpacks": [
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "eco"
}
}
}