From d0c4b9d4b406f1276c824f5f30fffc2296bdc4a3 Mon Sep 17 00:00:00 2001 From: mirek190 Date: Mon, 31 Aug 2026 13:42:12 +0100 Subject: [PATCH] docs(server): explain host and port options --- app/server/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/server/main.cpp b/app/server/main.cpp index b1d5e49a4..8fe29f694 100644 --- a/app/server/main.cpp +++ b/app/server/main.cpp @@ -70,6 +70,8 @@ void print_help() { << " --no-ui disable the embedded WebUI\n" << " --ui-management allow WebUI model management and downloads; requires\n" << " AUDIOCPP_BUILD_NATIVE_MODEL_MANAGER=ON at build time\n" + << " --host server bind address; default 127.0.0.1\n" + << " --port server listening port; default 8080\n" << " --backend cpu|cuda|hip|rocm|vulkan|metal default cuda (rocm is an alias for hip)\n" << " --list-devices list available backend devices and exit\n" << " --busy-timeout-ms fail a request with 503 when the model has been\n"