mirror of
https://github.com/open-webui/pipelines
synced 2025-05-12 16:40:45 +00:00
6 lines
139 B
Bash
Executable File
6 lines
139 B
Bash
Executable File
#!/usr/bin/env bash
|
|
PORT="${PORT:-9099}"
|
|
HOST="${HOST:-0.0.0.0}"
|
|
|
|
uvicorn main:app --host "$HOST" --port "$PORT" --forwarded-allow-ips '*'
|