Update README.md

This commit is contained in:
Broque Thomas 2025-08-10 01:51:49 -07:00
parent ce65925b02
commit ce43e4dd0a

View file

@ -167,22 +167,33 @@ Alternatively, you can paste this key directly into the API Key field in the Set
```json ```json
{ {
"spotify": { "spotify": {
"client_id": "YOUR_SPOTIFY_CLIENT_ID", "client_id": "<YOUR_SPOTIFY_CLIENT_ID>",
"client_secret": "YOUR_SPOTIFY_CLIENT_SECRET" "client_secret": "<YOUR_SPOTIFY_CLIENT_SECRET>"
}, },
"plex": { "plex": {
"base_url": "http://YOUR_PLEX_SERVER_IP:32400", "base_url": "<YOUR_PLEX_SERVER_URL>",
"token": "YOUR_PLEX_TOKEN" "token": "<YOUR_PLEX_TOKEN>"
}, },
"soulseek": { "soulseek": {
"slskd_url": "http://YOUR_SLSKD_IP:5030", "slskd_url": "<YOUR_SLSKD_URL>",
"api_key": "PASTE_YOUR_SLSKD_API_KEY_HERE", "api_key": "<YOUR_SLSKD_API_KEY>",
"download_path": "FULL_PATH_TO_SLSKD_DOWNLOADS_FOLDER", "download_path": "./path/to/slskd/download/folder",
"transfer_path": "FULL_PATH_TO_YOUR_PLEX_MUSIC_FOLDER" "transfer_path": "./path/to/music/folder"
}, },
"logging": { "logging": {
"level": "INFO", "path": "logs/app.log",
"path": "logs/app.log" "level": "INFO"
},
"settings": {
"audio_quality": "flac"
},
"database": {
"path": "database/music_library.db",
"max_workers": 5
},
"metadata_enhancement": {
"enabled": true,
"embed_album_art": true
} }
} }
``` ```