forked from IDN-C-X/IDN-GDrive-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
53 lines (53 loc) · 1.52 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
{
"name": "IDN-GDrive-Bot",
"description": "Telegram/Direct Links to GDrive Uploader Bot",
"repository": "https://github.com/IDN-C-X/IDN-GDrive-Bot",
"logo": "https://telegra.ph/file/fe64e5b1ebecba97ca1dd.png",
"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": ""
},
"SUPPORT_CHAT_LINK": {
"description": "Support Chat link in valid url format.",
"value": ""
},
"DOWNLOAD_DIRECTORY": {
"description": "Custom path for downloads. Must end with a forward slash.",
"value": "./downloads/"
},
"G_DRIVE_CLIENT_ID": {
"description": "Google Drive Client ID from Google Cloud Platform",
"value": ""
},
"G_DRIVE_CLIENT_SECRET": {
"description": "Google Drive Client Secret from Google Cloud Platform",
"value": ""
}
},
"addons": [{
"plan": "heroku-postgresql"
}],
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}
]
}