mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 04:15:25 +00:00
4 lines
113 B
Bash
Executable file
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 '*'
|