1# Server configuration
2SERVER_PORT=8080
3SERVER_HOST=localhost
4
5# Spotify OAuth configuration
6SPOTIFY_CLIENT_ID=
7SPOTIFY_CLIENT_SECRET=
8SPOTIFY_AUTH_URL=https://accounts.spotify.com/authorize
9SPOTIFY_TOKEN_URL=https://accounts.spotify.com/api/token
10SPOTIFY_SCOPES=user-read-currently-playing user-read-email
11
12# Callback URLs
13CALLBACK_SPOTIFY=http://localhost:8080/callback/spotify
14
15# Tracker settings
16TRACKER_INTERVAL=30
17
18# Database settings
19DB_PATH=./piper.db