-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathapp.json
More file actions
56 lines (55 loc) · 1.79 KB
/
app.json
File metadata and controls
56 lines (55 loc) · 1.79 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
{
"name": "Telegram multi bot",
"description": "An Advanced Multi Featured Bot Written In Python-Pyrogram",
"repository": "https://github.com/Mswpresents/maltiusagebot",
"logo": "https://graph.org/file/25278972e623010165500.jpg",
"stack": "container",
"keywords": ["tgbot", "multibot", "telegram bot"],
"env": {
"API_ID": {
"description": "Your API_ID from https://my.telegram.org/apps",
"value": "",
"required": true
},
"API_HASH": {
"description": "Your API_HASH from https://my.telegram.org/apps",
"value": "",
"required": true
},
"BOT_TOKEN": {
"description": "Your Bot token from @Botfather",
"value": "",
"required": true
},
"FORCE_SUB": {
"description": "Your Force Subscribe Channel username without @ ex:- mkn_bots_updates.",
"required": false
},
"DB_URL": {
"description": "Your database url from mongodb",
"required": true
},
"ADMIN": {
"description": "Your telagram user id to control this bot eg:- 5781982",
"required": true
},
"LOG_CHANNEL": {
"description": "A new private or public channel bot make Shure admin in that channel",
"required": false
},
"PICS": {
"description": "Add some telegraph link of pictures do to shown in the start message. multiple pics use 1 space to split the image",
"required": false
}
},
"addons": [],
"buildpacks": [{
"url": "heroku/python"
}],
"formation": {
"worker": {
"quantity": 1,
"size": "eco"
}
}
}