# Supabase Configuration
# Replace these with your actual Supabase project credentials
SUPABASE_URL=https://your-project-url.supabase.co
SUPABASE_KEY=your-supabase-anon-key
# Server Configuration
PORT=3000
# Logging Configuration
LOG_LEVEL=info # options: debug, info, warn, error
# Performance Tuning
CACHE_TTL=300000 # Cache time-to-live in milliseconds (5 minutes)
MAX_CONNECTIONS=10 # Maximum connections to Supabase
REQUEST_TIMEOUT=30000 # Request timeout in milliseconds (30 seconds)
# Development Environment
NODE_ENV=production # options: development, production