- Env.py now reads SPOTIFY_CLIENT_ID/SPOTIFY_CLIENT_SECRET (and optional path overrides) from the environment instead of hardcoding them. - Add .env.example and ignore .env / .venv. - Rewrite README with setup, usage and layout (drops the leaked secret). Note: secrets are also purged from prior history in this push. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
9 lines
401 B
Text
9 lines
401 B
Text
# Copy to `.env` and fill in, then `source .env` before running.
|
|
# Get these from https://developer.spotify.com/dashboard (your app's settings).
|
|
# Register `http://127.0.0.1:8888` as a Redirect URI in that app.
|
|
export SPOTIFY_CLIENT_ID=your_client_id_here
|
|
export SPOTIFY_CLIENT_SECRET=your_client_secret_here
|
|
|
|
# Optional overrides:
|
|
# export MUSIC_LIBRARY_PATH=~/Music
|
|
# export WORK_DIR=./work_dir/new
|