-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
79 lines (79 loc) · 2.55 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
{
"name": "MegaDLBot",
"description": "https://telegram.dog/MegaDLBot",
"keywords": [
"telegram",
"best",
"youtube",
"downloader",
"open",
"source",
"multi",
"purpose",
"ffmpeg",
"remote",
"uploader"
],
"success_url": "https://telegram.dog/MegaDLBot",
"website": "https://github.com/eyaadh/megadlbot_oss",
"repository": "https://github.com/eyaadh/megadlbot_oss",
"env": {
"ENV": {
"description": "Setting this to ANYTHING will enable VARs when in ENV mode",
"value": "ANYTHING"
},
"TG_BOT_TOKEN": {
"description": "Your bot token, as a string.",
"required": true
},
"TG_APP_ID": {
"description": "Get this value from https://my.telegram.org",
"required": true
},
"TG_API_HASH": {
"description": "Get this value from https://my.telegram.org",
"required": true
},
"TG_DUSTBIN_CHAT": {
"description": "Watch this video to understand what the dustbin is: https://youtu.be/vgzMacnI5Z8"
},
"ALLOWED_USERS": {
"description": "A list of users (user ids) allowed to use the bot. Please enter in the format [123123123, 321321321]",
"required": true
},
"IS_ATLAS": {
"description": "Setting this to ANYTHING will make the bot use MongoDB Atlas."
},
"DATABASE_DB_HOST": {
"description": "Watch this video to understand what database is: https://youtu.be/vgzMacnI5Z8"
},
"DATABASE_DB_USERNAME": {
"description": "Watch this video to understand what database is: https://youtu.be/vgzMacnI5Z8"
},
"DATABASE_DB_PASSWORD": {
"description": "Watch this video to understand what database is: https://youtu.be/vgzMacnI5Z8"
},
"DATABASE_DB_NAME": {
"description": "Watch this video to understand what database is: https://youtu.be/vgzMacnI5Z8"
},
"SEEDR_USERNAME": {
"description": "Username for Seedr login",
"required": true
},
"SEEDR_PASSWORD":{
"description": "Seedr Password",
"required": true
}
},
"buildpacks": [{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
}, {
"url": "heroku/python"
}],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}