Skip to content

Running the Server

Start the HEBBS server with default configuration:

Terminal window
hebbs-server
  • gRPC: 6380
  • HTTP/REST: 6381

On first start, HEBBS auto-generates a bootstrap API key and prints it to the console. Save it and export it for the CLI:

Terminal window
export HEBBS_API_KEY="hb_..."

To disable auth for local development: HEBBS_AUTH_ENABLED=false hebbs-server.

Verify the server is running:

Terminal window
curl http://localhost:6381/v1/health/ready

Create a hebbs.toml file to customize server behavior:

[server]
grpc_port = 6380
http_port = 6381