Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tjbck committed Jan 15, 2025
1 parent a0dcc3a commit a1a6424
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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`;


Expand Down

0 comments on commit a1a6424

Please sign in to comment.