-
Notifications
You must be signed in to change notification settings - Fork 239
/
app.json
55 lines (55 loc) · 1.56 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
{
"name": "MegaDL Bot",
"description": "Simple Telegram Bot to download files from Mega.nz",
"logo": "https://telegra.ph/file/583f46da57641b90c28f9.png",
"keywords": [
"megadl",
"telegram",
"mega.nz bot"
],
"website": "https://www.safone.tech",
"repository": "https://github.com/AsmSafone/MegaDL-Bot",
"success_url": "https://t.me/AsmSafone",
"env": {
"API_ID": {
"description": "Your API_ID from my.telegram.org",
"required": true
},
"API_HASH": {
"description": "Your API_HASH from my.telegram.org",
"required": true
},
"OWNER_ID": {
"description": "Your Telegram ID from @Find_TGIDbot",
"required": true
},
"BOT_TOKEN": {
"description": "Your Bot Token. Get it from @BotFather",
"required": true
},
"LOG_CHANNEL": {
"description": "Logs Channel ID for some tracking XD. Get it from @Find_TGIDbot",
"required": true
},
"UPDATES_CHANNEL": {
"description": "Updates Channel ID For ForceSub Asap. Get it from @Find_TGIDbot",
"required": false
}
},
"addons": [],
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"stack": "container"
}