Files
open-webui/backend/start.sh

8 lines
226 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2024-01-17 17:30:58 -05:00
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
cd "$SCRIPT_DIR" || exit
2024-01-12 19:38:30 -08:00
PORT="${PORT:-8080}"
exec uvicorn main:app --host 0.0.0.0 --port "$PORT" --forwarded-allow-ips '*'