.env.example 897 B

12345678910111213141516171819202122232425262728
  1. # Supabase Configuration
  2. SUPABASE_URL=https://YOUR_PROJECT.supabase.co
  3. SUPABASE_ANON_KEY=your_supabase_anon_key_here
  4. # Backend URL (this backend's public URL)
  5. # For production: https://your-backend.vercel.app or https://api.yourdomain.com
  6. # For local dev: http://localhost:3000
  7. BACKEND_URL=https://shopcall-ai-backend.vercel.app
  8. # Frontend URL (where users access the application)
  9. # For production: https://yourdomain.com
  10. # For local dev: http://localhost:8080
  11. FRONTEND_URL=https://shopcall.ai
  12. # Shopify OAuth Configuration
  13. SHOPIFY_API_KEY=your_shopify_api_key
  14. SHOPIFY_API_SECRET=your_shopify_api_secret
  15. # ShopRenter OAuth Configuration
  16. SHOPRENTER_CLIENT_ID=your_shoprenter_client_id
  17. SHOPRENTER_CLIENT_SECRET=your_shoprenter_client_secret
  18. # Email Configuration (for OTP emails)
  19. EMAIL_USER=your_gmail_address@gmail.com
  20. EMAIL_PASSWORD=your_gmail_app_password
  21. # Environment
  22. NODE_ENV=production