Onboarding Manager and Router Manager refactored, analytics and background jobs added, database setup updated, environment setup updated, frontend updated, backend updated. Critical onboarding database migration implemented.
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
# ALwrity Backend Configuration
|
|
|
|
# API Keys (Configure these in the onboarding process)
|
|
# OPENAI_API_KEY=your_openai_api_key_here
|
|
GEMINI_API_KEY=your_gemini_api_key_here
|
|
# ANTHROPIC_API_KEY=your_anthropic_api_key_here
|
|
# MISTRAL_API_KEY=your_mistral_api_key_here
|
|
|
|
# Research API Keys (Optional)
|
|
# TAVILY_API_KEY=your_tavily_api_key_here
|
|
# SERPER_API_KEY=your_serper_api_key_here
|
|
EXA_API_KEY=your_exa_api_key_here
|
|
|
|
# Authentication
|
|
# CLERK_SECRET_KEY=your_clerk_secret_key_here
|
|
|
|
# Frontend URL for OAuth callbacks
|
|
FRONTEND_URL=https://alwrity-ai.vercel.app
|
|
|
|
# OAuth Redirect URIs (Using environment variable for flexibility)
|
|
GSC_REDIRECT_URI=${FRONTEND_URL}/gsc/callback
|
|
WORDPRESS_REDIRECT_URI=${FRONTEND_URL}/wp/callback
|
|
WIX_REDIRECT_URI=${FRONTEND_URL}/wix/callback
|
|
BING_REDIRECT_URI=${FRONTEND_URL}/bing/callback
|
|
|
|
# Bing Webmaster OAuth Credentials
|
|
# Get these from: https://www.bing.com/webmasters/ > Settings > API Access
|
|
BING_CLIENT_ID=your_bing_client_id_here
|
|
BING_CLIENT_SECRET=your_bing_client_secret_here
|
|
|
|
# Server Configuration
|
|
HOST=0.0.0.0
|
|
PORT=8000
|
|
DEBUG=true
|
|
|
|
# Logging
|
|
LOG_LEVEL=INFO
|