-
Notifications
You must be signed in to change notification settings - Fork 34
/
app.json
44 lines (44 loc) · 1.29 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
{
"name": "GDrive-Uploader-Bot",
"description": "Telegram/Direct Links to GDrive Uploader Bot",
"repository": "https://github.com/viperadnan-git/google-drive-telegram-bot",
"logo": "https://telegra.ph/file/8669281aa2360613f7511.jpg",
"keywords": ["Telegram", "Google Drive", "uploader"],
"env": {
"ENV": {
"description": "Set it to anything to enable configuration by environment variables.",
"value": "ANYTHING"
},
"BOT_TOKEN": {
"description": "Get it from @BotFather"
},
"APP_ID": {
"description": "Your API_ID, Get it from https://my.telegram.org/apps"
},
"API_HASH": {
"description": "Your API_HASH, Get it from https://my.telegram.org/apps"
},
"SUDO_USERS": {
"description": "List of sudo users ids, seperated by space.",
"value": "999197022 939425014"
},
"SUPPORT_CHAT_LINK": {
"description": "Support Chat link in valid url format."
},
"DOWNLOAD_DIRECTORY": {
"description": "Custom path for downloads. Must end with a forward slash.",
"value": "./downloads/"
}
},
"addons": [{
"plan": "heroku-postgresql"
}],
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}
]
}