Users can import their top tracks from Last.fm by entering their username. No OAuth required - uses the public Last.fm API with user.getTopTracks and user.getInfo endpoints. Includes a preview feature to verify the username and see sample tracks before importing. Supports configurable time periods (all time, 7 days, 1/3/6/12 months). Free tier playlist limit enforced.
15 lines
659 B
Plaintext
15 lines
659 B
Plaintext
SECRET_KEY=change-me-to-a-random-string
|
|
DATABASE_URL=postgresql+asyncpg://vynl:vynl@db:5432/vynl
|
|
DATABASE_URL_SYNC=postgresql://vynl:vynl@db:5432/vynl
|
|
REDIS_URL=redis://redis:6379/0
|
|
SPOTIFY_CLIENT_ID=your-spotify-client-id
|
|
SPOTIFY_CLIENT_SECRET=your-spotify-client-secret
|
|
SPOTIFY_REDIRECT_URI=https://deepcutsai.com/auth/spotify/callback
|
|
ANTHROPIC_API_KEY=your-anthropic-api-key
|
|
STRIPE_SECRET_KEY=sk_test_your-stripe-secret-key
|
|
STRIPE_PUBLISHABLE_KEY=pk_test_your-stripe-publishable-key
|
|
STRIPE_PRICE_ID=price_your-pro-plan-price-id
|
|
STRIPE_WEBHOOK_SECRET=whsec_your-webhook-signing-secret
|
|
LASTFM_API_KEY=your-lastfm-api-key
|
|
FRONTEND_URL=https://deepcutsai.com
|