31 lines
1.2 KiB
Text
31 lines
1.2 KiB
Text
# AeThex Studio Environment Variables
|
|
|
|
# ===========================================
|
|
# SUPABASE (Required)
|
|
# ===========================================
|
|
# Get these from: https://supabase.com/dashboard/project/_/settings/api
|
|
NEXT_PUBLIC_SUPABASE_URL=https://your-project-id.supabase.co
|
|
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key-here
|
|
# Service role key - KEEP SECRET, never expose to client
|
|
SUPABASE_SERVICE_ROLE_KEY=your-service-role-key-here
|
|
|
|
# ===========================================
|
|
# Claude API Configuration
|
|
# ===========================================
|
|
# Get your API key from: https://console.anthropic.com/
|
|
# Required for cross-platform code translation feature
|
|
VITE_CLAUDE_API_KEY=sk-ant-api03-your-api-key-here
|
|
|
|
# Optional: Override Claude model (default: claude-3-5-sonnet-20241022)
|
|
# VITE_CLAUDE_MODEL=claude-3-5-sonnet-20241022
|
|
|
|
# ===========================================
|
|
# PostHog Analytics (Optional)
|
|
# ===========================================
|
|
# VITE_POSTHOG_KEY=your-posthog-key
|
|
# VITE_POSTHOG_HOST=https://app.posthog.com
|
|
|
|
# ===========================================
|
|
# Sentry Error Tracking (Optional)
|
|
# ===========================================
|
|
# VITE_SENTRY_DSN=your-sentry-dsn
|