Installation

Pre-built binaries

Download any package from the release page.

Homebrew

brew install kyleu/kyleu/loadtoad

Running with Docker

1
2
docker run -p 15550:15550 ghcr.io/kyleu/loadtoad:latest
docker run -p 15550:15550 ghcr.io/kyleu/loadtoad:latest-debug

Built from source

go install

go install github.com/kyleu/loadtoad@latest

Source code

If you want to contribute to the project, please follow the steps on our contributing guide.

If you just want to build from source for whatever reason, follow these steps:

1
2
3
4
git clone https://github.com/kyleu/loadtoad
cd loadtoad
make build
./build/debug/loadtoad --help

A script has been provided at ./bin/dev.sh that will auto-reload when the project changes.

Note that you may need to run ./bin/bootstrap.sh before building the project for the first time.