mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-11 20:05:19 +00:00
4 lines
134 B
Bash
Executable file
4 lines
134 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
SERVER_PORT="${SERVER_PORT:-8080}"
|
|
uvicorn main:app --host 0.0.0.0 --port $SERVER_PORT --forwarded-allow-ips '*'
|