Official Golang implementation of the Quai Manager.
For prerequisites and detailed build instructions please read the Installation Instructions.
Building quai-manager
requires both a Go (version 1.14 or later) and a C compiler. You can install
them using your favourite package manager. Once the dependencies are installed, run
Build via Makefile
make quai-manager
Build via GoLang directly
go build -o ./build/bin/manager manager/main.go
The below commands will run the manager in region 1 and zone 2.
It can be set to any value between 1 and 3 for regions and zones and the manager will start in that location.
Run via Makefile
make run region=1 zone=2
Run via Go binary
./build/bin/manager 1 2