forked from open-webui/open-webui
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 '*'
|