[WIP] music platform user data scraper
teal-fm atproto
32
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 4ff41eba5d59b9b66e96644f7b6f4dc1afdf8e27 19 lines 460 B view raw
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