# Frontend (Vite) environment variables # Copy to app/.env.local and fill in values as needed. # Only VITE_-prefixed vars are exposed to the browser. # # Tags: [required] must be set, [optional] has a sensible default or can be blank # [optional] Core RPC endpoint (Tauri sets this automatically; override for web-only dev) VITE_OPENHUMAN_CORE_RPC_URL=http://127.0.0.1:7788/rpc # [required] Backend API URL (web fallback when core RPC is unavailable) VITE_BACKEND_URL=https://staging-api.alphahuman.xyz # [optional] Telegram bot username used for managed DM linking fallback (default: openhuman_bot) VITE_TELEGRAM_BOT_USERNAME=openhuman_bot # [optional] Skills GitHub repository slug (default: tinyhumansai/openhuman-skills) VITE_SKILLS_GITHUB_REPO=tinyhumansai/openhuman-skills # [optional] Sentry DSN for error reporting (leave blank to disable) VITE_SENTRY_DSN= # [optional] Dev-only: auto-inject JWT token to skip login flow VITE_DEV_JWT_TOKEN= # [optional] Dev-only: force onboarding flow to always show VITE_DEV_FORCE_ONBOARDING=false # [optional] Client-side timeout for skill callTool/triggerSync (seconds; default 120, max 3600). # Should match OPENHUMAN_TOOL_TIMEOUT_SECS on the core when set. # VITE_TOOL_TIMEOUT_SECS= # [optional] Minimum desktop app semver to complete OAuth deep links (openhuman://oauth/success). Leave unset in dev. # VITE_MINIMUM_SUPPORTED_APP_VERSION=0.51.0 # [optional] Download page when OAuth is blocked due to an outdated build (default: GitHub releases/latest). # VITE_LATEST_APP_DOWNLOAD_URL=https://github.com/tinyhumansai/openhuman/releases/latest