Add local dev setup guide and .env, fix defaults for local development

This commit is contained in:
root
2026-03-30 22:08:39 -05:00
parent 234a914480
commit f799a12ed5
2 changed files with 107 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ class Settings(BaseSettings):
# Spotify
SPOTIFY_CLIENT_ID: str = ""
SPOTIFY_CLIENT_SECRET: str = ""
SPOTIFY_REDIRECT_URI: str = "https://deepcutsai.com/auth/spotify/callback"
SPOTIFY_REDIRECT_URI: str = "http://localhost:5173/auth/spotify/callback"
# Claude API
ANTHROPIC_API_KEY: str = ""
@@ -29,7 +29,7 @@ class Settings(BaseSettings):
STRIPE_WEBHOOK_SECRET: str = ""
# Frontend
FRONTEND_URL: str = "https://deepcutsai.com"
FRONTEND_URL: str = "http://localhost:5173"
# Rate limits (free tier)
FREE_DAILY_RECOMMENDATIONS: int = 10