diff --git a/3_cli/1_serve/server-start.md b/3_cli/1_serve/server-start.md index b82aaf3..7bef5d6 100644 --- a/3_cli/1_serve/server-start.md +++ b/3_cli/1_serve/server-start.md @@ -9,6 +9,10 @@ The `lms server start` command launches the LM Studio local server, allowing you ### Flags ```lms_params +- name: "--bind" + type: "string" + optional: true + description: "Bind the ip address to run the server on." - name: "--port" type: "number" optional: true @@ -26,6 +30,11 @@ Start the server with default settings: ```shell lms server start ``` +### Specify a custom address + +```shell +lms server start --bind 127.0.0.1 +``` ### Specify a custom port