Install build and runtime dependencies
- mac
brew install make go libpcap git- debian
sudo apt update && sudo apt install -y make golang libpcap-dev gitWhen building from source you may want to add the following lines to one of your rc files to add your user's go bin to the PATH variable.
export GOPATH="$HOME/go"
PATH="${GOPATH}/bin:$PATH"Install test dependencies
make depsMocks are generated using the //go:generate directive. Any
file that contains an interface that you would like to mock
should contain a go generate comment directive at the top of
the file. Mocks will then be generated via make mock
i.e.
// config/interface.go
package config
//go:generate mockgen -destination=../mock/config/mock_config.go -package=mock_config . Repo,Service- Generate mocks
make mock- Run tests
make testmake ops
# build development version that detects race conditions
make devsudo ./build/ops
# run development build
sudo ./build/ops-dev
# or run using go run
sudo go run main.go
# you can also add --debug to any of the run commands above to run a
# non-UI version of the app that just prints logs to the terminal
sudo go run main.go --debug- clear config file and log file
./build/ops clear