mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-07-14 18:15:56 -04:00
Replace separate DATABASE_URL and IMAGE_CACHE_DIR env vars with a single DATA_DIR root (default: ./data, Docker: /data). DATABASE_URL and CACHE_DIR are derived from it but can still be overridden individually. Also: - Pin pnpm to @10 for reproducible Docker builds - Add --link to COPY instructions for better BuildKit cache reuse - Add syntax directive for BuildKit features - Simplify Dockerfile mkdir to just /data (ensureImageDirs handles subdirs) - Remove redundant DATABASE_URL from docker-compose.yml Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
33 lines
2.2 KiB
Bash
33 lines
2.2 KiB
Bash
# ─── Data Directory ──────────────────────────────────────────────────────
|
|
# Root directory for SQLite database and image cache (default: ./data, Docker: /data)
|
|
# DATA_DIR=./data
|
|
|
|
# ─── TMDB (required) ───────────────────────────────────────────────────────
|
|
# API Read Access Token — get one at https://www.themoviedb.org/settings/api
|
|
TMDB_API_READ_ACCESS_TOKEN=
|
|
|
|
# Optional: override TMDB base URLs (advanced)
|
|
# TMDB_API_BASE_URL=https://api.themoviedb.org/3
|
|
# TMDB_IMAGE_BASE_URL=https://image.tmdb.org/t/p
|
|
|
|
# ─── Auth (required) ───────────────────────────────────────────────────────
|
|
# Random secret for session encryption (min 32 chars)
|
|
# Generate one with `npx @better-auth/cli secret` or `openssl rand -base64 32`
|
|
BETTER_AUTH_SECRET=
|
|
# Public URL of your instance, especially important if reverse proxy is used
|
|
BETTER_AUTH_URL=http://localhost:3000
|
|
|
|
# ─── OIDC Authentication (optional) ────────────────────────────────────
|
|
# OIDC is enabled when OIDC_CLIENT_ID, OIDC_CLIENT_SECRET, and OIDC_ISSUER_URL are all set.
|
|
# Callback URL to configure in your IdP: ${BETTER_AUTH_URL}/api/auth/oauth2/callback/oidc
|
|
# OIDC_CLIENT_ID=
|
|
# OIDC_CLIENT_SECRET=
|
|
# OIDC_ISSUER_URL= # e.g. https://authentik.example.com/application/o/sofa
|
|
# OIDC_PROVIDER_NAME=SSO # Display name on login button (default: "SSO")
|
|
# OIDC_AUTO_REGISTER=true # Auto-create users on first OIDC login (default: true)
|
|
# DISABLE_PASSWORD_LOGIN=false # Set to "true" to hide email/password form when OIDC is configured
|
|
|
|
# ─── Image Caching ─────────────────────────────────────────────────────
|
|
# Set IMAGE_CACHE_ENABLED to "false" to use TMDB CDN directly (default: enabled)
|
|
# IMAGE_CACHE_ENABLED=true
|