docs: update README, AGENTS.md, Makefile, and architecture docs
CI / check (push) Has been cancelled

This commit is contained in:
2026-06-04 22:10:50 -04:00
parent a7b5c13d4b
commit ac18f65094
9 changed files with 951 additions and 8 deletions
+4 -3
View File
@@ -35,23 +35,24 @@ go install github.com/rcarmo/webterm/cmd/webterm@latest
```bash
git clone https://github.com/rcarmo/webterm.git
cd webterm
mkdir -p bin
go build -o ./bin/webterm ./cmd/webterm
make build-go
```
The command above produces `bin/webterm`; you can also build it from repo root with `make build-go`.
That produces `bin/webterm` and rebuilds generated frontend assets first.
## Quick start
Run a default shell session:
```bash
make build-fast
go run ./cmd/webterm
```
Run a specific command:
```bash
make build-fast
go run ./cmd/webterm -- htop
```