Settings

Spotify Configuration
Spotify credentials are configured via environment variables. Check your .env file in the project root.
Current Configuration:
  • Client ID: 844de6a7...
  • Redirect URI: https://spotify.muza.gotaclue.pl/callback
  • Status: Not Connected
Required Scopes:
  • playlist-read-private
  • playlist-read-collaborative
  • user-library-read
  • playlist-modify-private
  • playlist-modify-public
Lidarr Configuration
Full URL to your Lidarr API endpoint
Found in Lidarr Settings > General > Security
Root folder for music in Lidarr
Navidrome Configuration
Database Path: /app/data/navidrome.db Found
Configured via DATABASE_PATH environment variable
M3U Output Directory: /app/output Exists
Configured via OUTPUT_DIR environment variable
Configuration Help
Spotify Setup

Create a Spotify app at developer.spotify.com and add your credentials to the .env file.

Lidarr Setup

Find your API key in Lidarr under Settings > General > Security. The URL should include the full path to the API (usually ending in /api/v1).

Navidrome Setup

The database file is usually located in your Navidrome data directory. Make sure the web application has read access to this file.

System Status
Spotify: Disconnected
Lidarr: Not Tested
Navidrome DB: Found
Environment Variables

Configure via .env file or environment variables:

# Spotify (required)
CLIENT_ID="your_spotify_client_id"
CLIENT_SECRET="your_spotify_client_secret"
REDIRECT_URI="http://localhost:5000/callback"

# Navidrome (required for M3U)
DATABASE_PATH="/path/to/navidrome.db"
OUTPUT_DIR="/path/to/output"

# Lidarr (optional)
LIDARR_URL="http://localhost:8686/api/v1"
API_KEY="your_lidarr_api_key"