forked from Itz-fork/Mega.nz-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
65 lines (65 loc) · 2.09 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
{
"name": "Mega.nz Bot",
"description": "Simple Telegram Bot to download files from Mega.nz",
"logo": "https://telegra.ph/file/583f46da57641b90c28f9.png",
"keywords": [
"mega.nz",
"Telegram Bot",
"mega.nz bot"
],
"website": "https://t.me/NexaBotsUpdates",
"repository": "https://github.com/Itz-fork/Mega.nz-Bot",
"success_url": "https://t.me/NexaBotsUpdates",
"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
},
"AUTH_USERS": {
"description": "Telegram Ids Of Auth Users, Only they can use this bot. Separate them by space!",
"required": true
},
"BOT_TOKEN": {
"description": "Your Bot Token From @BotFather",
"required": true
},
"IS_PUBLIC_BOT": {
"description": "Set this to 'True' If you want to set Download Function as Public. Default to 'False' !",
"required": false,
"value": "False"
},
"LOGS_CHANNEL": {
"description": "Make a private channel and forward a message from that channel to @ChannelidHEXbot and Get this. Not Mandatory",
"required": false,
"value": ""
},
"MEGA_EMAIL": {
"description": "Fill this if you want to use your own Mega Account. This is your Mega account Email!",
"required": false
},
"MEGA_PASSWORD": {
"description": "Fill this if you want to use your own Mega Account. This is your Mega account Password!",
"required": false
}
},
"addons": [],
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"stack": "heroku-20"
}