open-webui/backend/start.sh

5 lines
134 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2024-01-11 19:54:14 +00:00
SERVER_PORT="${SERVER_PORT:-8080}"
uvicorn main:app --host 0.0.0.0 --port $SERVER_PORT --forwarded-allow-ips '*'