26 lines
1.3 KiB
Plaintext
26 lines
1.3 KiB
Plaintext
# =============================================================================
|
|
# ENVIRONMENT VARIABLES
|
|
# =============================================================================
|
|
# Copy this file to .env.local and fill in your values
|
|
# NEVER commit .env.local to version control!
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# SUPABASE CONFIGURATION
|
|
# -----------------------------------------------------------------------------
|
|
# Get these from: https://app.supabase.com/project/_/settings/api
|
|
NEXT_PUBLIC_SUPABASE_URL=https://your-project.supabase.co
|
|
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key-here
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# BACKEND API URL
|
|
# -----------------------------------------------------------------------------
|
|
# In development, this is proxied through Next.js (see next.config.js)
|
|
# In production, point to your deployed FastAPI backend
|
|
NEXT_PUBLIC_API_URL=http://localhost:8000
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# AI PROVIDER KEYS (Optional - can also be in backend only)
|
|
# -----------------------------------------------------------------------------
|
|
# Only add here if you need client-side AI calls (not recommended for security)
|
|
# NEXT_PUBLIC_OPENAI_API_KEY=sk-xxx
|