33 lines
779 B
Plaintext
33 lines
779 B
Plaintext
# Copy to .env and adjust for your local environment.
|
|
# The .env is loaded at startup; variables already set in the environment take precedence.
|
|
|
|
PORT=8080
|
|
WORKERS=2
|
|
LOG_LEVEL=DEBUG
|
|
|
|
# In dev keep DRY_RUN=true so real FLACs are not deleted.
|
|
DRY_RUN=true
|
|
|
|
# Local paths (defaults point to container paths).
|
|
MUSIC_PATH=./testdata/music
|
|
DB_PATH=./data/coda.db
|
|
FFMPEG_BIN=/usr/bin/ffmpeg
|
|
FFPROBE_BIN=/usr/bin/ffprobe
|
|
|
|
# Work window (optional, disabled by default).
|
|
TIMEZONE=America/Sao_Paulo
|
|
WORK_WINDOW_ENABLED=false
|
|
WORK_WINDOW_START=08:00
|
|
WORK_WINDOW_END=18:00
|
|
|
|
# Lidarr integration (leave blank in dev if not testing).
|
|
LIDARR_URL=
|
|
LIDARR_API_KEY=
|
|
WEBHOOK_SECRET=
|
|
|
|
# Ntfy notifications (optional, leave disabled if not using).
|
|
NTFY_ENABLED=false
|
|
NTFY_URL=
|
|
NTFY_TOPIC=
|
|
NTFY_TOKEN=
|