# ============================================================================= # Meeting Assistant Frontend Configuration # Copy this file to .env and fill in your values # ============================================================================= # ----------------------------------------------------------------------------- # API Configuration (Vite build-time variables) # ----------------------------------------------------------------------------- # Backend API base URL # For development: http://localhost:8000/api # For production: http://:/api or https://api.example.com/api VITE_API_BASE_URL=http://localhost:8000/api # Upload timeout in milliseconds (default: 600000 = 10 minutes) VITE_UPLOAD_TIMEOUT=600000 # Application title (shown in window title) VITE_APP_TITLE=Meeting Assistant # ----------------------------------------------------------------------------- # Sidecar/Whisper Configuration (Electron runtime variables) # ----------------------------------------------------------------------------- # These environment variables are read by Electron main process at runtime # and passed to the Sidecar (Whisper transcription service) # Whisper model size # Options: tiny, base, small, medium, large # Larger models are more accurate but require more memory and are slower WHISPER_MODEL=medium # Execution device # Options: cpu, cuda # Use "cuda" if you have an NVIDIA GPU with CUDA support WHISPER_DEVICE=cpu # Compute precision # Options: int8, float16, float32 # int8 is fastest but less accurate, float32 is most accurate but slowest WHISPER_COMPUTE=int8