Installation
Download and install Hanzo Base on macOS, Linux, or Docker.
Download
brew install hanzoai/tap/baseOr download the binary directly:
curl -fsSL https://base.hanzo.ai/install | shcurl -fsSL https://base.hanzo.ai/install | shOr use the pre-built binary from GitHub Releases.
docker pull ghcr.io/hanzoai/base:latest
docker run -p 8090:8090 ghcr.io/hanzoai/base:latest serve --http 0.0.0.0:8090Requires Go 1.24+:
git clone https://github.com/hanzoai/base.git
cd base
CGO_ENABLED=0 go build -o base examples/base/main.go
./base serveVerify Installation
base --versionStart the Server
base serve --devOpen http://localhost:8090/_/ to access the admin dashboard.
The --dev flag enables:
- Auto-migration on schema changes
- Verbose logging
- CORS for all origins
- Hot reload for JS hooks
Last updated on