From a67bee61d21eade8be85c3a73eb042af77a65a53 Mon Sep 17 00:00:00 2001 From: "architect.in.git" Date: Wed, 23 Apr 2025 13:28:02 -0600 Subject: [PATCH 1/5] no more branch images :c --- .github/workflows/docker-build.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 53949bc..becd72a 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -1,14 +1,8 @@ name: Build and Push Docker Image on: - push: - # Trigger on all branches and tags; you can later refine this logic if needed - branches: [ '**' ] - tags: [ '**' ] - pull_request: - branches: [ '**' ] release: - types: [ published, released ] + types: [ published ] workflow_dispatch: jobs: From 92cbb105b8aeb65a62a961e4851e30d601f735c1 Mon Sep 17 00:00:00 2001 From: "architect.in.git" Date: Wed, 23 Apr 2025 21:02:27 -0600 Subject: [PATCH 2/5] fixed .env format --- .env | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.env b/.env index 1ca1a5d..6cc087b 100644 --- a/.env +++ b/.env @@ -6,8 +6,12 @@ REDIS_PORT=6379 REDIS_DB=0 REDIS_PASSWORD=CHANGE_ME -EXPLICIT_FILTER=false # Set to true to filter out explicit content +# Optional: Redis connection details +EXPLICIT_FILTER=false -PUID=1000 # User ID for the container -PGID=1000 # Group ID for the container -UMASK=0022 # Optional: Sets the default file permissions for newly created files within the container. +# User ID for the container +PUID=1000 +# Group ID for the container +PGID=1000 +# Optional: Sets the default file permissions for newly created files within the container. +UMASK=0022 From 3445603f0a689cf65a820dfd903d203940cc938b Mon Sep 17 00:00:00 2001 From: BladeWDR <1136623+BladeWDR@users.noreply.github.com> Date: Fri, 25 Apr 2025 17:31:47 -0400 Subject: [PATCH 3/5] change redirect URI due to Spotify Developer dashboard changes. The Spotify Developer Dashboard no longer allows the use of http unless it's to loopback address. It does not work even with "localhost". --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dca46fe..ec20219 100755 --- a/README.md +++ b/README.md @@ -167,7 +167,7 @@ In order for searching to work, you need to set up your own Spotify Developer ap 4. Fill in: - App name (e.g., "My Spotizerr App") - App description - - Redirect URI: `http://localhost:7171/callback` (or your custom domain if exposed) + - Redirect URI: `http://127.0.0.1:7171/callback` (or your custom domain if exposed) - Check the Developer Terms agreement box 5. Click "Create" 6. On your app page, note your "Client ID" From ea2216ce66b4527b9062044372ed1af2fd1c22b7 Mon Sep 17 00:00:00 2001 From: Xoconoch <93692082+Xoconoch@users.noreply.github.com> Date: Mon, 5 May 2025 17:46:11 -0600 Subject: [PATCH 4/5] Update docker-compose.yaml --- docker-compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index c0449af..4e05d65 100755 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -9,7 +9,7 @@ services: - ./logs:/app/logs # <-- Volume for persistent logs ports: - 7171:7171 - image: cooldockerizer93/spotizerr:dev + image: cooldockerizer93/spotizerr:latest container_name: spotizerr-app restart: unless-stopped environment: From 4481949b3bed8615a46778f7364cb1fbbed350b8 Mon Sep 17 00:00:00 2001 From: Xoconoch <93692082+Xoconoch@users.noreply.github.com> Date: Tue, 20 May 2025 20:51:41 -0600 Subject: [PATCH 5/5] remove spotipy cache path --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index ec20219..99c05f4 100755 --- a/README.md +++ b/README.md @@ -250,7 +250,6 @@ EXPLICIT_FILTER=false # Filter explicit content PUID=1000 # Container user ID PGID=1000 # Container group ID UMASK=0022 # Default file permission mask -SPOTIPY_CACHE_PATH=/app/cache/.cache # Spotify token cache path ``` ## Troubleshooting