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"