- Replace hardcoded API key with environment variable - Add OPENAI_API_KEY to .env.example for documentation - Prevents secret exposure in version control 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
28 lines
870 B
Plaintext
28 lines
870 B
Plaintext
# Supabase Configuration
|
|
SUPABASE_URL=https://your-project-id.supabase.co
|
|
SUPABASE_ANON_KEY=your-anon-key-here
|
|
SUPABASE_SERVICE_KEY=your-service-key-here
|
|
SUPABASE_ACCESS_TOKEN=your-access-token-here
|
|
|
|
# Public Supabase Configuration (for client-side)
|
|
PUBLIC_SUPABASE_URL=https://your-project-id.supabase.co
|
|
PUBLIC_SUPABASE_ANON_KEY=your-anon-key-here
|
|
|
|
# Stripe Configuration
|
|
STRIPE_PUBLISHABLE_KEY=pk_test_your-publishable-key-here
|
|
STRIPE_SECRET_KEY=sk_test_your-secret-key-here
|
|
STRIPE_WEBHOOK_SECRET=whsec_your-webhook-secret-here
|
|
|
|
# Application Configuration
|
|
NODE_ENV=development
|
|
PUBLIC_APP_URL=http://localhost:4321
|
|
|
|
# Email Configuration (Resend)
|
|
RESEND_API_KEY=re_your-resend-api-key-here
|
|
|
|
# Error Monitoring (Sentry)
|
|
SENTRY_DSN=https://your-sentry-dsn-here@sentry.io/project-id
|
|
SENTRY_RELEASE=1.0.0
|
|
|
|
# AI Features (OpenAI)
|
|
OPENAI_API_KEY=sk-your-openai-api-key-here |