From ce43e4dd0ab6cb3b2e4025e776c7f4c64d632cd9 Mon Sep 17 00:00:00 2001 From: Broque Thomas Date: Sun, 10 Aug 2025 01:51:49 -0700 Subject: [PATCH] Update README.md --- README.md | 31 +++++++++++++++++++++---------- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e20d6a68..2a5d0615 100644 --- a/README.md +++ b/README.md @@ -167,22 +167,33 @@ Alternatively, you can paste this key directly into the API Key field in the Set ```json { "spotify": { - "client_id": "YOUR_SPOTIFY_CLIENT_ID", - "client_secret": "YOUR_SPOTIFY_CLIENT_SECRET" + "client_id": "", + "client_secret": "" }, "plex": { - "base_url": "http://YOUR_PLEX_SERVER_IP:32400", - "token": "YOUR_PLEX_TOKEN" + "base_url": "", + "token": "" }, "soulseek": { - "slskd_url": "http://YOUR_SLSKD_IP:5030", - "api_key": "PASTE_YOUR_SLSKD_API_KEY_HERE", - "download_path": "FULL_PATH_TO_SLSKD_DOWNLOADS_FOLDER", - "transfer_path": "FULL_PATH_TO_YOUR_PLEX_MUSIC_FOLDER" + "slskd_url": "", + "api_key": "", + "download_path": "./path/to/slskd/download/folder", + "transfer_path": "./path/to/music/folder" }, "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 } } ```