.env.example 645 B

123456789101112131415
  1. # Supabase Configuration
  2. # Get these from your Supabase project: Settings → API
  3. VITE_SUPABASE_URL=https://YOUR_PROJECT.supabase.co
  4. VITE_SUPABASE_ANON_KEY=your_supabase_anon_key_here
  5. # Backend API Base URL (Supabase Edge Functions)
  6. # Automatically derived from VITE_SUPABASE_URL + /functions/v1
  7. # For production: https://YOUR_PROJECT.supabase.co/functions/v1
  8. # For local dev: http://localhost:54321/functions/v1
  9. VITE_API_URL=https://YOUR_PROJECT.supabase.co/functions/v1
  10. # Frontend URL (for OAuth callbacks and redirects)
  11. # For production: https://yourdomain.com
  12. # For local dev: http://localhost:8080
  13. VITE_FRONTEND_URL=http://localhost:8080