This commit is contained in:
Luxferre
2026-09-08 17:54:51 +03:00
parent fcbc581613
commit 954601bb63
+18 -2
View File
@@ -46,13 +46,29 @@ It connects directly to Streamlit's binary WebSocket engine (`/_stcore/stream`)
## Installation and build ## 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 ```bash
make 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 ## Running the server