Set deepcutsai.com as production domain

This commit is contained in:
root
2026-03-30 21:59:58 -05:00
parent cef7d576d4
commit 93c0ba81d3
4 changed files with 11 additions and 7 deletions

View File

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