# Copy to `.env` (it is gitignored). # # Spotify Web API (client-credentials) — gives DIRECT artist links and, on its own, gates # candidates by exact-name match (a name links only when Spotify has that artist). Create a # free app at https://developer.spotify.com/dashboard to get these. SPOTIFY_CLIENT_ID= SPOTIFY_CLIENT_SECRET= # Optional local LLM (via ollama) for BETTER matching — it decides which candidate substrings # are real artists/albums. Set OLLAMA_URL to enable it; still zero npm deps (plain HTTP). # Confirmed names get a direct Spotify link when available, else a Google->Bandcamp fallback. # ollama pull qwen2.5:3b # ~2GB, runs comfortably on a 16GB MacBook M2 # OLLAMA_URL=http://localhost:11434 # OLLAMA_MODEL=qwen2.5:3b # Port the resolver listens on (default 8787). If you change it, also update RESOLVER_URL in # extension/background.js and the host in extension/manifest.json permissions. PORT=8787