-
Notifications
You must be signed in to change notification settings - Fork 8
/
app.json
104 lines (104 loc) · 3.63 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "Media Search bot",
"description": "When you going to send file on telegram channel/group this bot will save that in database, So you can search that easily in inline mode",
"keywords": [
"telegram",
"best",
"indian",
"pyrogram",
"media",
"search",
"channel",
"index",
"inline"
],
"website": "https://github.com/GouthamSER/Inline-Media",
"repository": "https://github.com/GouthamSER/Inline-Media",
"env": {
"BOT_TOKEN": {
"description": "Your bot token.",
"value": ""
},
"USERBOT_STRING_SESSION": {
"description": "User bot string session.",
"value": "",
"required": false
},
"API_ID": {
"description": "Get this value from https://my.telegram.org",
"value": ""
},
"API_HASH": {
"description": "Get this value from https://my.telegram.org",
"value": ""
},
"CHANNELS": {
"description": "Username or ID of channel or group. Separate multiple IDs by space.",
"value": ""
},
"ADMINS": {
"description": "Username or ID of Admin. Separate multiple Admins by space.",
"value": ""
},
"AUTH_USERS": {
"description": "Username or ID of users to give access of inline search. Separate multiple users by space.\nLeave it empty if you don't want to restrict bot usage.",
"value": "",
"required": false
},
"AUTH_CHANNEL": {
"description": "Username or ID of channel. Without subscribing this channel users cannot use bot.",
"value": "",
"required": false
},
"START_MSG": {
"description": "Welcome message for start command",
"value": "**Hi, I'm Media Search bot**\n\nHere you can search files in inline mode. Just press following buttons and start searching.",
"required": false
},
"INVITE_MSG": {
"description": "Auth channel invitation message",
"value": "Please join @.... to use this bot",
"required": false
},
"USE_CAPTION_FILTER": {
"description": "Whether bot should use captions to improve search results. (True False)",
"value": "False",
"required": false
},
"DATABASE_URI": {
"description": "mongoDB URI. Get this value from https://www.mongodb.com. For more help watch this video - https://youtu.be/dsuTn4qV2GA",
"value": ""
},
"DATABASE_NAME": {
"description": "Name of the database in mongoDB. For more help watch this video - https://youtu.be/dsuTn4qV2GA",
"value": ""
},
"COLLECTION_NAME": {
"description": "Name of the collections. Defaults to Telegram_files. If you are using the same database, then use different collection name for each bot",
"value": "Telegram_files",
"required": false
},
"CACHE_TIME": {
"description": "The maximum amount of time in seconds that the result of the inline query may be cached on the server",
"value": "300",
"required": false
},
"LOG_CHANNEL":{
"description": "LOG CHANNEL ID GIVE HERE",
"value":"id",
"required":"true"
}
},
"addons": [],
"buildpacks": [
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}