open-webui/backend/start.sh
2024-01-12 19:38:30 -08:00

4 lines
113 B
Bash
Executable file

#!/usr/bin/env bash
PORT="${PORT:-8080}"
uvicorn main:app --host 0.0.0.0 --port $PORT --forwarded-allow-ips '*'