-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathapp.json
More file actions
37 lines (37 loc) · 963 Bytes
/
app.json
File metadata and controls
37 lines (37 loc) · 963 Bytes
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
{
"name": "SmartDlBot",
"description": "A smart Telegram bot with Spotify and MongoDB integration.",
"repository": "https://github.com/abirxdhack/SmartDlBot",
"keywords": ["telegram", "bot", "docker", "flask", "ffmpeg"],
"stack": "container",
"env": {
"API_ID": {
"description": "Telegram API ID",
"required": true
},
"API_HASH": {
"description": "Telegram API Hash",
"required": true
},
"BOT_TOKEN": {
"description": "Telegram Bot Token",
"required": true
},
"ADMIN_IDS": {
"description": "Comma-separated list of Telegram admin user IDs",
"required": true
},
"SPOTIFY_CLIENT_ID": {
"description": "Spotify Client ID",
"required": true
},
"SPOTIFY_CLIENT_SECRET": {
"description": "Spotify Client Secret",
"required": true
},
"MONGO_URL": {
"description": "MongoDB connection string",
"required": true
}
}
}