13 lines
409 B
Bash
13 lines
409 B
Bash
# Supabase Configuration
|
|
# Copy this file to .env and fill in your actual values
|
|
|
|
# Supabase API URL
|
|
VITE_SUPABASE_URL=http://localhost:8000
|
|
|
|
# Supabase anonymous key (public, used by the frontend)
|
|
VITE_SUPABASE_ANON_KEY=your-anon-key-here
|
|
|
|
# Supabase service role key (secret, NEVER exposed to the frontend)
|
|
# Only used by scripts and edge functions
|
|
VITE_SUPABASE_SERVICE_ROLE_KEY=your-service-role-key-here
|