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

@@ -4,10 +4,10 @@ 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=http://localhost:5173/auth/spotify/callback
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
FRONTEND_URL=http://localhost:5173
FRONTEND_URL=https://deepcutsai.com

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