-
-
Notifications
You must be signed in to change notification settings - Fork 131
/
app.json
57 lines (57 loc) · 1.54 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
{
"name": "Unzipper Bot",
"description": "A Telegram bot to extract various types of archives",
"logo": "https://telegra.ph/file/d4ba24682e030fc58613f.jpg",
"keywords": [
"7z",
"zip",
"rar",
"Telegram Bot",
"unzipper bot"
],
"website": "https://edm115.dev/unzip",
"repository": "https://github.com/EDM115/unzip-bot",
"success_url": "https://t.me/EDM115bots",
"env": {
"APP_ID": {
"description": "Your APP_ID from my.telegram.org",
"required": true
},
"API_HASH": {
"description": "Your API_HASH from my.telegram.org",
"required": true
},
"BOT_OWNER": {
"description": "Telegram Id of your account",
"required": true
},
"BOT_TOKEN": {
"description": "Your Bot Token From @BotFather",
"required": true
},
"MONGODB_URL": {
"description": "Your MongoDB url, Get it from https://www.mongodb.com/",
"required": true
},
"LOGS_CHANNEL": {
"description": "ID of a channel, can also be a group",
"required": true
}
},
"addons": [],
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/HasibulKabir/heroku-buildpack-ffmpeg-ffprobe.git"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "eco"
}
},
"stack": "container"
}