| 12345678910111213141516171819202122232425262728 |
- # Supabase Configuration
- SUPABASE_URL=https://YOUR_PROJECT.supabase.co
- SUPABASE_ANON_KEY=your_supabase_anon_key_here
- # Backend URL (this backend's public URL)
- # For production: https://your-backend.vercel.app or https://api.yourdomain.com
- # For local dev: http://localhost:3000
- BACKEND_URL=https://shopcall-ai-backend.vercel.app
- # Frontend URL (where users access the application)
- # For production: https://yourdomain.com
- # For local dev: http://localhost:8080
- FRONTEND_URL=https://shopcall.ai
- # Shopify OAuth Configuration
- SHOPIFY_API_KEY=your_shopify_api_key
- SHOPIFY_API_SECRET=your_shopify_api_secret
- # ShopRenter OAuth Configuration
- SHOPRENTER_CLIENT_ID=your_shoprenter_client_id
- SHOPRENTER_CLIENT_SECRET=your_shoprenter_client_secret
- # Email Configuration (for OTP emails)
- EMAIL_USER=your_gmail_address@gmail.com
- EMAIL_PASSWORD=your_gmail_app_password
- # Environment
- NODE_ENV=production
|