.env.example 1.2 KB

12345678910111213141516171819202122232425262728
  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
  14. # GDPR Compliance Settings
  15. # Hide data access policy settings from store owners for stricter GDPR compliance
  16. # When set to 'true', the corresponding settings will be hidden in the UI
  17. # and stores will use api_only mode by default (direct API access, no local caching)
  18. VITE_HIDE_ORDERS_ACCESS_SETTINGS=true
  19. VITE_HIDE_CUSTOMERS_ACCESS_SETTINGS=true
  20. # Webshop Scraper Configuration
  21. # Default scraper API URL (can be overridden per store)
  22. # For local development: http://127.0.0.1:3000
  23. # For production: https://your-scraper-api.com
  24. VITE_DEFAULT_SCRAPER_API_URL=http://127.0.0.1:3000