-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
51 lines (51 loc) · 1.48 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
{
"name": "MegatoTS_TG Bot",
"description": "Telegram Bot to download files from Mega.nz",
"repository": "https://github.com/prxpostern/megatotransfershandtelegram",
"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": "Your Logs/ Status Channel ID. Get it from @Find_TGIDbot",
"required": true
},
"UPDATES_CHANNEL": {
"description": "Your Updates Channel ID For ForceSub. Get it from @Find_TGIDbot",
"required": false
},
"LOG_CHANNEL_UNAME": {
"description": "Your Bot Logs / Status Channel Username without @",
"required": true
}
},
"addons": [],
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"stack": "heroku-20"
}