-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathapp.json
More file actions
92 lines (92 loc) · 2.64 KB
/
app.json
File metadata and controls
92 lines (92 loc) · 2.64 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "˹ᴛᴜɴᴇ ᴠɪᴀ ʙᴏᴛ˼",
"description": "A Telegram Music Player Bot, written in Python with Pyrogram, Py-TgCalls, and yt-dlp.",
"logo": "https://files.catbox.moe/7udxph.jpg",
"keywords": [
"python3",
"telegram",
"MusicBot",
"py-tgcalls",
"pyrogram",
"yt-dlp"
],
"env": {
"API_ID": {
"description": "Telegram API ID from https://my.telegram.org.",
"required": true,
"value": ""
},
"API_HASH": {
"description": "Telegram API Hash from https://my.telegram.org.",
"required": true,
"value": ""
},
"BOT_TOKEN": {
"description": "Bot token from BotFather.",
"required": true,
"value": ""
},
"MONGO_DB_URI": {
"description": "MongoDB URI for storing bot data (get from https://cloud.mongodb.com).",
"required": true,
"value": ""
},
"OWNER_ID": {
"description": "Your Telegram numeric user ID (use @userinfobot).",
"required": true,
"value": ""
},
"STRING_SESSION": {
"description": "Pyrogram v2 session string (generate from https://telegram.tools/session-string-generator#pyrogram).",
"required": true,
"value": ""
},
"LOGGER_ID": {
"description": "Chat ID of the log group where the bot sends logs (bot must be admin).",
"required": true,
"value": ""
},
"COOKIE_URL": {
"description": "Raw link (e.g., Pastebin or Batbin) to your YouTube cookies.txt file for better yt-dlp performance.",
"required": true,
"value": ""
},
"API_URL": {
"description": "(Optional) URL of a custom API server used for song downloads or other services.",
"required": false,
"value": ""
},
"VIDEO_API_URL": {
"description": "(Optional) URL of a custom API server used for video downloads or other services.",
"required": false,
"value": ""
},
"API_KEY": {
"description": "(Optional) API Key associated with your custom music download server (used with API_URL).",
"required": false,
"value": ""
},
"HEROKU_API_KEY": {
"description": "(Optional) Heroku API key for auto-deployments or restarts.",
"required": false,
"value": ""
},
"HEROKU_APP_NAME": {
"description": "(Optional) Your Heroku app name (used with HEROKU_API_KEY).",
"required": false,
"value": ""
}
},
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
},
{
"url": "https://github.com/mixersoft/heroku-buildpack-deno.git"
}
],
"stack": "container"
}