Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 400 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 400 Bytes

Installing

Go

Make sure you have Go 1.19.+ installed:

brew install go

Dependencies

# install dependencies via makefile script
make deps

# build codegen configs
make build-configs

# set $GOPATH env variable (should be your home directory)
export GOPATH=${HOME}/go

# download dependency 
go mod vendor

# build
make

# test to ensure everything is working
make test