Files
open-webui/backend/dev.sh

4 lines
161 B
Bash
Raw Normal View History

2025-07-22 21:36:35 -06:00
export CORS_ALLOW_ORIGIN="http://localhost:5173"
2024-01-12 19:38:30 -08:00
PORT="${PORT:-8080}"
2025-07-19 19:43:08 +02:00
uvicorn open_webui.main:app --port $PORT --host 0.0.0.0 --forwarded-allow-ips '*' --reload