open-webui/backend/start.sh

5 lines
113 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2024-01-13 04:38:30 +01:00
PORT="${PORT:-8080}"
uvicorn main:app --host 0.0.0.0 --port $PORT --forwarded-allow-ips '*'