-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
74 lines (74 loc) · 2.39 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
{
"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/Mahesh0253/Media-Search-bot",
"repository": "https://github.com/Mahesh0253/Media-Search-bot",
"env": {
"BOT_TOKEN": {
"description": "Your bot token.",
"value": ""
},
"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": ""
},
"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 going to use same database, then use different collection name for each bot",
"value": "Telegram_files",
"required": false
},
"MAX_RESULTS": {
"description": "Maximum limit for inline search results",
"value": "10",
"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
}
},
"addons": [],
"buildpacks": [
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}