37 lines
938 B
Plaintext
37 lines
938 B
Plaintext
# Application Configuration
|
|
NODE_ENV=production
|
|
PORT=3000
|
|
NEXT_TELEMETRY_DISABLED=1
|
|
|
|
# Database (Supabase or local PostgreSQL)
|
|
DATABASE_URL="postgresql://lumina:lumina_dev_password@postgres:5432/lumina_db"
|
|
|
|
# Supabase Configuration
|
|
SUPABASE_URL="https://your-project.supabase.co"
|
|
SUPABASE_ANON_KEY="your-anon-key"
|
|
SUPABASE_SERVICE_ROLE_KEY="your-service-role-key"
|
|
|
|
# Authentication
|
|
NEXTAUTH_URL="http://localhost:3000"
|
|
NEXTAUTH_SECRET="your-secret-key-here"
|
|
|
|
# Redis (Optional - for caching)
|
|
REDIS_URL="redis://redis:6379"
|
|
|
|
# API Keys
|
|
ANTHROPIC_API_KEY="your-anthropic-key"
|
|
OPENAI_API_KEY="your-openai-key"
|
|
|
|
# Email (Optional)
|
|
SMTP_HOST="smtp.example.com"
|
|
SMTP_PORT=587
|
|
SMTP_USER="your-email@example.com"
|
|
SMTP_PASSWORD="your-password"
|
|
SMTP_FROM="noreply@example.com"
|
|
|
|
# Storage (Optional)
|
|
S3_BUCKET="your-bucket"
|
|
S3_REGION="eu-central-1"
|
|
S3_ACCESS_KEY="your-access-key"
|
|
S3_SECRET_KEY="your-secret-key"
|