# Copy to `.env`, fill in, then `source .env` before running. # --- the three things you point at your own data --------------------------- # Folder of audio files to scan (tags incl. ISRC / MusicBrainz id are read). export LOCAL_LIBRARY_PATH=~/Music # iTunes/Music "Library.xml" you export manually (File > Library > Export Library…). export ITUNES_XML_PATH=~/Music/iTunes\ Library.xml # Storage root: the database and cached Spotify responses live here. export DATA_DIR=./data # --- Spotify credentials (only needed for live fetching) ------------------- # https://developer.spotify.com/dashboard — register http://127.0.0.1:8888 as a Redirect URI. export SPOTIFY_CLIENT_ID=your_client_id_here export SPOTIFY_CLIENT_SECRET=your_client_secret_here # --- optional -------------------------------------------------------------- # export MB_CONTACT=you@example.com # MusicBrainz User-Agent contact # export DATABASE_URL=postgresql+psycopg://u:p@localhost/mi # use Postgres instead of SQLite