- # Supabase Configuration
- # Get these from your Supabase project: Settings → API
- VITE_SUPABASE_URL=https://YOUR_PROJECT.supabase.co
- VITE_SUPABASE_ANON_KEY=your_supabase_anon_key_here
- # Backend API Base URL (Supabase Edge Functions)
- # Automatically derived from VITE_SUPABASE_URL + /functions/v1
- # For production: https://YOUR_PROJECT.supabase.co/functions/v1
- # For local dev: http://localhost:54321/functions/v1
- VITE_API_URL=https://YOUR_PROJECT.supabase.co/functions/v1
- # Frontend URL (for OAuth callbacks and redirects)
- # For production: https://yourdomain.com
- # For local dev: http://localhost:8080
- VITE_FRONTEND_URL=http://localhost:8080
|