forked from VideoMasters/VideoDownloaderBot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
51 lines (51 loc) · 1.43 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
{
"name":"VideoDownloaderBot",
"description":"Download videos from various websites using this telegram bot",
"repository":"https://github.com/DaruaraFriends/VideoDownloaderBot",
"buildpacks":[
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
},
{
"url": "https://github.com/amivin/aria2-heroku.git"
},
{
"url": "heroku/python"
}
],
"env": {
"API_ID":{
"description": "Get your telegram API ID from https://my.telegram.org",
"value":""
},
"API_HASH":{
"description":"Get your telegram API HASH from https://my.telegram.org",
"value":""
},
"BOT_TOKEN":{
"description":"Get from BotFather",
"value":""
},
"AUTH_USERS":{
"description":"Users who can use",
"value":""
},
"GROUPS":{
"description":"Groups where to work",
"value":""
},
"HTML_GROUPS":{
"description":"Groups where to work for html",
"value":""
},
"THUMB":{
"description":"Thumbnail link. Leave empty for using video thumbnail.",
"value":"thumb.jpg",
"required":false
},
"NAME":{
"description":"Name to send",
"value":"TheDarkPrince"
}
}
}