video-accessibility/frontend/.env.production
2025-10-10 09:19:39 -05:00

30 lines
1.5 KiB
Text

# =============================================================================
# Frontend Production Environment Variables
# =============================================================================
# These variables are embedded into the built JavaScript at build time
# They are NOT secret - they will be visible in the browser
# =============================================================================
# Backend API base URL (proxied through Apache)
VITE_API_BASE_URL=https://ai-sandbox.oliver.solutions/video-accessibility-back
# Application environment
VITE_APP_ENV=production
# Microsoft Authentication (Azure AD)
VITE_AZURE_CLIENT_ID=9079054c-9620-4757-a256-23413042f1ef
VITE_AZURE_AUTHORITY=https://login.microsoftonline.com/e519c2e6-bc6d-4fdf-8d9c-923c2f002385
VITE_AZURE_REDIRECT_URI=https://ai-sandbox.oliver.solutions/video-accessibility/
# Sentry DSN for error tracking (optional - leave empty to disable)
VITE_SENTRY_DSN=
# =============================================================================
# Important Notes:
# =============================================================================
# 1. All VITE_ prefixed variables are embedded in the build
# 2. Never put secrets here - they will be visible in browser dev tools
# 3. After changing these values, rebuild the frontend:
# npm run build
# 4. The API URL must match your Apache reverse proxy configuration
# =============================================================================