forked from tgbot-collection/ytdlbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
43 lines (43 loc) · 942 Bytes
/
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
{
"name": "YouTube-Downloader",
"description": "A Telegrambot to download youtube video",
"repository": "https://github.com/tgbot-collection/ytdlbot",
"logo": "https://avatars.githubusercontent.com/u/73354211?s=200&v=4",
"keywords": [
"telegram",
"youtube-dl"
],
"env": {
"TOKEN": {
"description": "Bot token",
"value": "token"
},
"APP_ID": {
"description": "APP ID",
"value": "12345"
},
"APP_HASH": {
"description": "APP HASH",
"value": "12345abc"
},
"OWNER": {
"description": "Your telegram username",
"value": "username",
"required": false
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "eco"
}
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-python.git"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}
]
}