Development
Build CH-UI from source
Requirements
- Go 1.24+
- Bun
Clone and Build
git clone https://github.com/caioricciuti/ch-ui.git
cd ch-ui
make build
./ch-uiDev Mode
Run the Go backend and frontend dev server separately:
# Terminal 1 — backend
make dev
# Terminal 2 — frontend
cd ui && bun install && bun run devMake Targets
| Target | Description |
|---|---|
make build | Full production build (frontend + Go binary) |
make build-frontend | Build frontend only |
make build-go | Build Go binary only |
make test | Run test suite |
make vet | Run Go vet |
make clean | Remove build artifacts |