c7e078d758
Replace the placeholder MUSICBRAINZ_USER_AGENT env var with
MUSICBRAINZ_OWNER_EMAIL. The User-Agent ("MCMA/<version> ( <contact> )")
is now composed from the fixed app name, the installed package version,
and the operator's contact email — falling back to the project URL when
no email is configured. Also use the same version for the FastAPI app.
43 lines
1.5 KiB
Bash
43 lines
1.5 KiB
Bash
# Copy to .env and adjust. Never commit real secrets.
|
|
|
|
# runtime
|
|
ENVIRONMENT=dev # dev | test | prod
|
|
LOG_LEVEL=INFO
|
|
LOG_JSON=false # true in prod
|
|
|
|
# database (async driver required)
|
|
DATABASE_URL=postgresql+asyncpg://mcma:mcma@localhost:5432/mcma
|
|
DB_ECHO=false
|
|
|
|
# redis (cache + arq broker)
|
|
REDIS_URL=redis://localhost:6379/0
|
|
|
|
# auth — GENERATE a strong secret for prod: `openssl rand -hex 32`
|
|
JWT_SECRET=change-me-in-prod
|
|
ACCESS_TOKEN_TTL_SECONDS=900
|
|
REFRESH_TOKEN_TTL_SECONDS=2592000
|
|
# Public self-service sign-up (POST /auth/register). Set to false to make
|
|
# accounts admin-only. Registered users are never superusers.
|
|
ALLOW_REGISTRATION=true
|
|
|
|
# subsonic — key that encrypts per-user Subsonic app-passwords at rest.
|
|
# GENERATE a strong secret for prod (`openssl rand -hex 32`); rotating it
|
|
# invalidates all stored app-passwords. NOTE: /rest must be served over HTTPS.
|
|
SUBSONIC_SECRET_KEY=change-me-subsonic-key
|
|
|
|
# media / storage
|
|
MEDIA_PATH=/data/media
|
|
TRANSCODE_CACHE_PATH=/data/transcode-cache
|
|
MAX_PARALLEL_DOWNLOADS=2
|
|
|
|
# sources — mounted folder the `local` source indexes (copies into MEDIA_PATH).
|
|
# Unset → the local source is not registered. Mount read-only in compose.
|
|
# LOCAL_MEDIA_IMPORT_PATH=/import
|
|
|
|
# external services (all optional — backend degrades gracefully if unset)
|
|
# ML_SERVICE_URL=http://ml:9000
|
|
# ACOUSTID_API_KEY=
|
|
# Sent to MusicBrainz/AcoustID as part of the User-Agent (MCMA/<version> ( <email> )).
|
|
# MUSICBRAINZ_OWNER_EMAIL=you@example.com
|
|
# YOUTUBE_COOKIES_PATH=/data/cookies.txt
|