Set deepcutsai.com as production domain
This commit is contained in:
@@ -33,6 +33,10 @@ See `DESIGN.md` for full product spec.
|
||||
- **Colors**: Deep purple (#7C3AED) + warm cream (#FFF7ED) + charcoal (#1C1917)
|
||||
- **Vibe**: Warm analog nostalgia meets modern AI
|
||||
|
||||
## Domain
|
||||
- **deepcutsai.com** (hosted on Hostinger)
|
||||
- App name remains **Vynl**
|
||||
|
||||
## Git
|
||||
- Repo: To be created on Gitea (chrisryn/vynl)
|
||||
- Repo: Gitea (chrisryn/vynl)
|
||||
- Branches: master + dev (standard workflow)
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user