From 1fa2c25e9b308b73d92876fb164be29fb677f213 Mon Sep 17 00:00:00 2001 From: "cool.gitter.not.me.again.duh" Date: Thu, 29 May 2025 18:24:25 -0600 Subject: [PATCH] Update readme --- README.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index dca46fe..cda73e9 100755 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ mkdir spotizerr && cd spotizerr 3. Copy `docker-compose.yml` from this repo. 4. Create required directories: ```bash -mkdir -p creds config downloads logs cache +mkdir -p data/creds data/config data/watch data/history downloads logs/tasks .cache ``` 5. Launch containers: ```bash @@ -263,9 +263,14 @@ SPOTIPY_CACHE_PATH=/app/cache/.cache # Spotify token cache path - API errors: Ensure your Spotify client ID and client secret are correctly entered **Log Locations**: -- Credentials: `./creds/` directory -- Downloads: `./downloads/` directory -- Application logs: `docker logs spotizerr` +- Application Logs: `docker logs spotizerr` (for main app and Celery workers) +- Individual Task Logs: `./logs/tasks/` (inside the container, maps to your volume) +- Credentials: `./data/creds/` +- Configuration Files: `./data/config/` +- Downloaded Music: `./downloads/` +- Watch Feature Database: `./data/watch/` +- Download History Database: `./data/history/` +- Spotify Token Cache: `./.cache/` (if `SPOTIPY_CACHE_PATH` is set to `/app/cache/.cache` and mapped) ## Notes