-
Notifications
You must be signed in to change notification settings - Fork 28
/
app.json
51 lines (51 loc) · 1.3 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": "StreamtapeLoader",
"description": "Telegram Bot to Upload Streamtape.com URL.",
"keywords": [
"telegram",
"best",
"streamtape",
"downloader"
],
"success_url": "https://github.com/X-Gorn/StreamtapeLoader",
"website": "https://github.com/X-Gorn",
"repository": "https://github.com/X-Gorn/StreamtapeLoader",
"env": {
"BOT_TOKEN": {
"description": "Your bot token, as a string.",
"value": ""
},
"APP_ID": {
"description": "Get this value from https://my.telegram.org",
"value": ""
},
"API_HASH": {
"description": "Get this value from https://my.telegram.org",
"value": ""
},
"OWNER_ID": {
"description": "Your telegram id, not username. Open https://t.me/MissRose_bot and send /id to bot",
"value": ""
},
"AS_DOC": {
"description": "True: will upload as document | False: will upload as video",
"value": "False"
},
"DEFAULT_THUMBNAIL": {
"description": "Default Thumbnail if bot can't find streamtape video thumbnail",
"value": "https://telegra.ph/file/7adee9735e65353398942.jpg"
}
},
"addons": [
],
"buildpacks": [{
"url": "heroku/python"
}],
"stack": "heroku-20",
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}