-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
24 lines (20 loc) · 1.39 KB
/
.env.example
File metadata and controls
24 lines (20 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Supabase Local Development Configuration
# Copy this file to .env.local - these values are the same for all local Supabase instances
# Local Supabase instance (these are standard local development keys)
PUBLIC_SUPABASE_URL=http://127.0.0.1:54321
PUBLIC_SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6ImFub24iLCJleHAiOjE5ODM4MTI5OTZ9.CRXP1A7WOeoJeXxjNni43kdQwgnWNReilDMblYTn_I0
SUPABASE_SERVICE_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6InNlcnZpY2Vfcm9sZSIsImV4cCI6MTk4MzgxMjk5Nn0.EGIM96RAZx35lJzdJsyH-qQwv8Hdp7fsn3W0YpN81IU
# Optional: Email service for production (not needed for local development)
EMAIL_SERVICE_KEY=your_email_service_key
# Production Database Configuration (for seeding test data in production)
# NOTE: For Vercel deployment, set these as environment variables in Vercel dashboard
# Get DATABASE_URL from your Supabase project settings > Database > Connection string
# Format: postgresql://[user]:[password]@[host]:[port]/[database]
DATABASE_URL=postgresql://postgres:[password]@db.[project-ref].supabase.co:5432/postgres
# Alternative: Individual database connection parameters (if not using DATABASE_URL)
# Set these in Vercel environment variables for production deployment
# DB_HOST=db.[project-ref].supabase.co
# DB_PORT=5432
# DB_USER=postgres
# DB_PASSWORD=your_production_password
# DB_NAME=postgres