forked from XMYSTERlOUSX/mega-link-downloader-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
87 lines (87 loc) · 3 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "Mega Link Downloader Bot",
"description": "This is a telegram bot to download mega.nz links.",
"keywords": [
"telegram",
"mega.nz",
"downloader",
"open",
"source",
"mega",
"pyrogram",
"bot",
"uploader"
],
"success_url": "https://t.me/mega_downloader_robot",
"website": "https://github.com/XMYSTERlOUSX/mega-link-downloader-bot",
"logo": "https://telegra.ph/file/a438489c44d17d108f7b5.jpg",
"repository": "https://github.com/XMYSTERlOUSX/mega-link-downloader-bot",
"stack": "container",
"env": {
"WEBHOOK": {
"description": "Setting this to ANYTHING will enable webhooks when in env mode! (Don't change anything in this field!)",
"value": "ANYTHING"
},
"TG_BOT_TOKEN": {
"description": "Make a bot from https://t.me/BotFather and enter the token here.",
"value": ""
},
"APP_ID": {
"description": "Get this value from https://my.telegram.org/apps",
"value": ""
},
"API_HASH": {
"description": "Get this value from https://my.telegram.org/apps",
"value": ""
},
"Bot_username": {
"description": "Your bot's telegram username (must enter with '@' in the front of the username)",
"value": ""
},
"OWNER_ID": {
"description": "Your(owner's) telegram id",
"value": ""
},
"AUTH_USERS": {
"description": "Id's of the telegram users, who you want to allow for multitasking - downloading multiple links at once! In heroku separate the ids by space. (don't put commas. Only separate each of the id's with space)",
"value": "1023936257 1845875276",
"required": false
},
"REDIS_URI": {
"description": "Redis Endpoint, Get This Value from http://redislabs.com/try-free (If you don't know how to obtain these values a complete video tutorial is available here:- https://t.me/botzupdate/5)",
"value": ""
},
"REDIS_PASS": {
"description": "Redis Password, Get This Value from http://redislabs.com/try-free (If you don't know how to obtain these values a complete video tutorial is available here:- https://t.me/botzupdate/5)",
"value": ""
},
"Mega_email": {
"description": "This is not necessary! Enter your mega email only if you have a mega.nz account with pro/business features. (Keep as 'None' if you don't have one)",
"value": "None",
"required": false
},
"Mega_password": {
"description": "This is not necessary! Enter your mega password only if you have a mega.nz account with pro/business features. (Keep as 'None' if you don't have one)",
"value": "None",
"required": false
},
"ACCESS_CHANNEL": {
"description": "Private group id to spy users.(Should be public group)",
"value": ""
"required": false
}
},
"addons": [
],
"buildpacks": [{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
}, {
"url": "heroku/python"
}],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}