From 954601bb63a8afe72ea65b3f91dd11a3f0f3cbcb Mon Sep 17 00:00:00 2001 From: Luxferre Date: Tue, 8 Sep 2026 17:54:51 +0300 Subject: [PATCH] rdm upd --- README.md | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c8db5f9..8392253 100644 --- a/README.md +++ b/README.md @@ -46,13 +46,29 @@ It connects directly to Streamlit's binary WebSocket engine (`/_stcore/stream`) ## Installation and build -Clone or navigate to the repository, then build the binary: +### Using `go install` + +Install the binary directly to `$GOPATH/bin` (or `~/go/bin`): + +```bash +go install code.luxferre.top/luxferre/groqqer@latest +``` + +Make sure `$GOPATH/bin` is in your `PATH`. + +### Building from source + +Clone or navigate to the repository, then compile the binary: ```bash make ``` -The optimized binary will be created at `bin/groqqer`. +The optimized binary will be created at `bin/groqqer`. Alternatively, install into `$GOPATH/bin` from the local directory: + +```bash +go install . +``` ## Running the server