-
Notifications
You must be signed in to change notification settings - Fork 204
Expand file tree
/
Copy pathapp.json
More file actions
147 lines (147 loc) · 3.89 KB
/
Copy pathapp.json
File metadata and controls
147 lines (147 loc) · 3.89 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "TgMusicBot",
"description": "A Telegram music bot.",
"repository": "https://github.com/AshokShau/TgMusicBot",
"logo": "https://raw.githubusercontent.com/AshokShau/TgMusicBot/master/docs/logo.jpeg",
"keywords": [
"telegram",
"music",
"bot",
"go"
],
"stack": "container",
"env": {
"API_ID": {
"description": "Your Telegram API ID.",
"required": true
},
"API_HASH": {
"description": "Your Telegram API hash.",
"required": true
},
"TOKEN": {
"description": "Your Telegram bot token.",
"required": true
},
"MONGO_URI": {
"description": "Your MongoDB connection string.",
"required": true
},
"OWNER_ID": {
"description": "The user ID of the bot owner.",
"required": false,
"value": "5938660179"
},
"LOGGER_ID": {
"description": "The group ID for the bot's logs.",
"required": true,
"value": "-1002166934878"
},
"SESSION_TYPE": {
"description": "The session type (pyrogram, telethon, or gogram).",
"required": true,
"value": "pyrogram"
},
"MAX_FILE_SIZE": {
"description": "The maximum file size for downloads (in bytes).",
"required": false,
"value": "524288000"
},
"STRING1": {
"description": "Pyrogram/Telethon/Gogram session string.",
"required": true
},
"STRING2": {
"description": "Pyrogram/Telethon/Gogram session string.",
"required": false
},
"STRING3": {
"description": "Pyrogram/Telethon/Gogram session string.",
"required": false
},
"STRING4": {
"description": "Pyrogram/Telethon/Gogram session string.",
"required": false
},
"STRING5": {
"description": "Pyrogram/Telethon/Gogram session string.",
"required": false
},
"STRING6": {
"description": "Pyrogram/Telethon/Gogram session string.",
"required": false
},
"STRING7": {
"description": "Pyrogram/Telethon/Gogram session string.",
"required": false
},
"STRING8": {
"description": "Pyrogram/Telethon/Gogram session string.",
"required": false
},
"STRING9": {
"description": "Pyrogram/Telethon/Gogram session string.",
"required": false
},
"STRING10": {
"description": "Pyrogram/Telethon/Gogram session string.",
"required": false
},
"API_URL": {
"description": "API URL for external services.",
"required": false,
"value": "https://tgmusic.fallenapi.fun"
},
"API_KEY": {
"description": "API key for external services. Get you own from @FallenApiBot -> /apikey",
"required": false
},
"DEFAULT_SERVICE": {
"description": "Default music download service (e.g., youtube).",
"required": false,
"value": "youtube"
},
"DOWNLOADS_DIR": {
"description": "Directory to store downloads.",
"required": false
},
"DB_NAME": {
"description": "Name of the MongoDB database.",
"required": false,
"value": "MusicBot"
},
"PROXY": {
"description": "Proxy URL for the bot.",
"required": false
},
"COOKIES_URL": {
"description": "URL to a cookies file for yt-dlp. (vai batbin.me)",
"required": false
},
"SUPPORT_GROUP": {
"description": "Link to the support group.",
"required": false,
"value": "https://t.me/GuardxSupport"
},
"SUPPORT_CHANNEL": {
"description": "Link to the support channel.",
"required": false,
"value": "https://t.me/FallenProjects"
},
"SONG_DURATION_LIMIT": {
"description": "The maximum duration of a song in seconds.",
"required": false,
"value": "3600"
},
"DEVS": {
"description": "A space-separated list of developer user IDs.",
"required": false
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "basic"
}
}
}