forked from CodeXBotz/Inline-Filter-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
76 lines (75 loc) · 2.21 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
{
"name": "Telegram Inline Filter Bot",
"description": "An Inline Filter Bot using Mongodb",
"keywords": [
"telegram",
"filter",
"bot",
"inline"
],
"repository": "https://github.com/CodeXBotz/Inline-Filter-Bot",
"logo": "https://telegra.ph/file/14d3013fda21281c54b61.jpg",
"env": {
"TG_BOT_TOKEN": {
"description": "Your Bot token, Get it from @Botfather",
"value": ""
},
"OWNER_ID": {
"description": "An integer of consisting of your owner ID",
"value": "1250450587"
},
"APP_ID":{
"description": "your app id, take it from my.telegram.org",
"value": ""
},
"API_HASH":{
"description": "your api hash, take it from my.telegram.org",
"value": ""
},
"DATABASE_URL":{
"description": "Database URL from https://cloud.mongodb.com/",
"value": ""
},
"IS_PUBLIC":{
"description": "Optional: set this False, if the bot is only for admins",
"value": "True",
"required": false
},
"START_MESSAGE": {
"description": "Optional: custon start message of bot, use HTML parsemode format",
"value": "",
"required": false
},
"ADMINS": {
"description": "A space separated list of user_ids of Admins, they can only create links",
"value": "",
"required": false
},
"THUMBNAIL_URL": {
"description": "Optional: URL of the Image, it used as thumbnail for text ",
"value": "",
"required": false
},
"FILTER_COMMAND": {
"description": "Optional: Command for add filter",
"value": "add",
"required": false
},
"DELETE_COMMAND": {
"description": "Optional: Command for delete filter",
"value": "del",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}