-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathapp.json
More file actions
51 lines (51 loc) · 1.5 KB
/
app.json
File metadata and controls
51 lines (51 loc) · 1.5 KB
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":"Admin/Owner/Friends ID Seperate by ',' Ex: 44578878,8878899",
"value":""
},
"GROUPS":{
"description":"Groups where to work",
"value":""
},
"HTML_GROUPS":{
"description":"Group ID if you would like to add the bot in group.",
"value":""
},
"THUMB":{
"description":"(Thumbnail) Telegraph link or leave it default(Locky Lodu)",
"value":"thumb.jpg",
"required":false
},
"NAME":{
"description":"Credit",
"value":"I want no credit."
}
}
}