| 1234567891011121314151617181920212223242526 |
- VITE_API_BASE_URL=http://localhost:8000
- VITE_APP_TITLE=AX Document Editor
- VITE_DEBUG=false# API Base URL
- # This is the base URL for the backend API server
- # Default: http://localhost:8000
- VITE_API_BASE_URL=http://192.168.0.195:8000
- # Application Title
- # This will be displayed in the browser tab
- VITE_APP_TITLE=AX Document Editor
- # Debug Mode
- # Enable debug mode for development
- # Default: false
- VITE_DEBUG=false
- # Development-only direct AI endpoints. Never ship these keys in a production build.
- VITE_AI_API_URL=
- VITE_AI_API_KEY=
- VITE_WORKFLOW_API_URL=
- VITE_WORKFLOW_API_KEY=
- # Production same-origin proxy endpoints. The proxy stores the upstream API keys server-side.
- VITE_AI_PROXY_URL=/api/v1/ai/chat
- VITE_WORKFLOW_PROXY_URL=/api/v1/ai/workflow
|