forked from open-webui/open-webui
7 lines
221 B
Bash
Executable file
7 lines
221 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
cd "$SCRIPT_DIR" || exit
|
|
|
|
PORT="${PORT:-8080}"
|
|
uvicorn main:app --host 0.0.0.0 --port "$PORT" --forwarded-allow-ips '*'
|