This commit is contained in:
Timothy Jaeryang Baek 2025-01-14 17:34:09 -08:00
parent a0dcc3a927
commit a1a642429c

View File

@ -418,7 +418,7 @@ export async function startServer(installationPath?: string, port?: number): Pro
let startCommand =
process.platform === 'win32'
? `"${installationPath}\\Scripts\\activate.bat" && uvicorn open_webui.main:app --host "0.0.0.0" --forwarded-allow-ips "*"`
? `"${installationPath}\\Scripts\\activate.bat" && uvicorn open_webui.main:app --host "0.0.0.0" --forwarded-allow-ips '*'`
: `source "${installationPath}/bin/activate" && open-webui serve`;