-
Notifications
You must be signed in to change notification settings - Fork 301
/
app.json
53 lines (53 loc) · 1.62 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": "GDrive-Uploader-Bot",
"description": "Telegram/Direct Links to GDrive Uploader Bot",
"repository": "https://github.com/kjeymax/GDUPLOAD_BOT2",
"logo": "https://telegra.ph/file/5c26b2c17722757384490.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": "1331188677 956524656"
},
"SUPPORT_CHAT_LINK": {
"description": "Support Chat link in valid url format.",
"value": "https://t.me/lkhitech"
},
"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": "202264815644.apps.googleusercontent.com"
},
"G_DRIVE_CLIENT_SECRET": {
"description": "Google Drive Client Secret from Google Cloud Platform",
"value": "X4Z3ca8xfWDb1Voo-F9a7ZxJ"
}
},
"addons": [{
"plan": "heroku-postgresql"
}],
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}
]
}