From a1a642429ca47e8bae3128407174a49114a9577b Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Tue, 14 Jan 2025 17:34:09 -0800 Subject: [PATCH] fix --- src/utils/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/index.ts b/src/utils/index.ts index 3a98456..0c4aaec 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -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`;