From a3b73fbf7237b8b5f110f17f0558deebce3b1662 Mon Sep 17 00:00:00 2001 From: inputnoise Date: Mon, 25 May 2026 20:25:08 +0200 Subject: [PATCH] Remove unused JELLYFIN_URL config Co-Authored-By: Claude Sonnet 4.6 --- .env.example | 2 -- backend/config.py | 2 +- docker-compose.yml | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.env.example b/.env.example index 6b2f5ca..ad22d47 100644 --- a/.env.example +++ b/.env.example @@ -6,5 +6,3 @@ SECRET_KEY=changeme-use-a-real-secret # Optional: path on the host where downloads are stored DOWNLOAD_PATH=./downloads -# Optional: Jellyfin integration URL -JELLYFIN_URL= diff --git a/backend/config.py b/backend/config.py index 37bca64..278053e 100644 --- a/backend/config.py +++ b/backend/config.py @@ -9,7 +9,7 @@ class Settings(BaseSettings): secret_key: str = "changeme-use-a-real-secret-in-production" algorithm: str = "HS256" access_token_expire_minutes: int = 60 * 24 * 7 # 1 week - jellyfin_url: str = "" + settings = Settings() diff --git a/docker-compose.yml b/docker-compose.yml index b8f6368..1ea6508 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -11,7 +11,6 @@ services: DATABASE_URL: sqlite:////data/app.db DOWNLOAD_PATH: /downloads SECRET_KEY: ${SECRET_KEY:-changeme} - JELLYFIN_URL: ${JELLYFIN_URL:-} ports: - "8000:8000"