-
Notifications
You must be signed in to change notification settings - Fork 202
Expand file tree
/
Copy pathapp.json
More file actions
106 lines (106 loc) · 3.72 KB
/
app.json
File metadata and controls
106 lines (106 loc) · 3.72 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
{
"name": "YukkiMusic",
"description": "A Telegram bot that streams music into group voice chats with seamless playback and control.",
"keywords": ["telegram", "bot", "music", "go", "voice-chat"],
"repository": "https://github.com/TheTeamVivek/YukkiMusic",
"website": "https://github.com/TheTeamVivek/YukkiMusic",
"stack": "container",
"env": {
"API_ID": {
"description": "Your Telegram API ID from my.telegram.org.",
"value": "",
"required": true
},
"API_HASH": {
"description": "Your Telegram API Hash from my.telegram.org.",
"value": "",
"required": true
},
"TOKEN": {
"description": "Your Telegram bot token from @BotFather.",
"value": "",
"required": true
},
"MONGO_DB_URI": {
"description": "Your MongoDB connection string.",
"value": "",
"required": true
},
"STRING_SESSION": {
"description": "A Pyrogram string session for the assistant.",
"value": "",
"required": true
},
"FALLEN_API_KEY": {
"description": "API key for Fallen API (optional). You can get one from @FallenApiBot or https://beta.fallenapi.fun/. If you are using cookies, you can leave this empty.",
"value": "",
"required": false
},
"FALLEN_API_URL": {
"description": "Base URL for the Fallen API. For more info, visit @FallenApiBot or https://beta.fallenapi.fun/.",
"value": "https://beta.fallenapi.fun",
"required": false
},
"OWNER_ID": {
"description": "The Telegram user ID of the bot's owner.",
"value": "",
"required": true
},
"LOGGER_ID": {
"description": "The Telegram chat ID where logs will be sent.",
"value": "",
"required": false
},
"DURATION_LIMIT": {
"description": "The maximum duration of a track in seconds.",
"value": "4200",
"required": false
},
"LEAVE_ON_DEMOTED": {
"description": "Leave the group when the bot is demoted. Set to true to enable.",
"value": "false",
"required": false
},
"QUEUE_LIMIT": {
"description": "The maximum number of tracks allowed in the queue.",
"value": "7",
"required": false
},
"START_IMG_URL": {
"description": "URL of the image to be displayed on the start message.",
"value": "https://raw.githubusercontent.com/Vivekkumar-IN/assets/master/images.png",
"required": false
},
"SUPPORT_CHAT": {
"description": "The URL of your support chat.",
"value": "https://t.me/TheTeamVk",
"required": false
},
"SUPPORT_CHANNEL": {
"description": "The URL of your support channel.",
"value": "https://t.me/TheTeamVivek",
"required": false
},
"COOKIES_LINK": {
"description": "A space-separated list of batbin.me URLs for cookies.",
"value": "",
"required": false
},
"SET_CMDS": {
"description": "Set to 'true' to have the bot set its commands on startup.",
"value": "false",
"required": false
},
"MAX_AUTH_USERS": {
"description": "The maximum number of authorized users per chat.",
"value": "25",
"required": false
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "basic"
}
}
}