-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathapp.json
More file actions
45 lines (45 loc) · 1.33 KB
/
Copy pathapp.json
File metadata and controls
45 lines (45 loc) · 1.33 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
{
"name": "All Url Uploader",
"description": "Telegram bot that downloads direct URLs and supported yt-dlp media, then uploads the result back to Telegram.",
"repository": "https://github.com/kalanakt/All-Url-Uploader",
"keywords": [
"telegram",
"bot",
"python",
"aiogram",
"yt-dlp",
"heroku"
],
"stack": "container",
"env": {
"BOT_TOKEN": {
"description": "Telegram bot token from BotFather."
},
"OWNER_ID": {
"description": "Telegram user ID that owns and administers the bot."
},
"AUTH_USERS": {
"description": "Optional comma-separated Telegram user IDs that can bypass the cooldown.",
"required": false
},
"DOWNLOAD_LOCATION": {
"description": "Writable path used for temporary downloads, uploads, requests, and thumbnails.",
"required": false,
"value": "./DOWNLOADS"
},
"CHUNK_SIZE": {
"description": "Optional direct-download chunk size; values below 1024 are treated as kilobytes.",
"required": false,
"value": "128"
},
"HTTP_PROXY": {
"description": "Optional proxy URL used for network requests and yt-dlp.",
"required": false
},
"PROCESS_MAX_TIMEOUT": {
"description": "Optional timeout in seconds for external tool processes.",
"required": false,
"value": "3700"
}
}
}