Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 841 Bytes

development.md

File metadata and controls

22 lines (13 loc) · 841 Bytes

Development Guide

Quickstart

The ./build/install-tools.sh command bootstrap the recommended tools and puts the binaries under ./build/bin

./build/install-tools.sh

Setup development environment

Following tools are recommended:

Tool Usage in the Project Installation Instructions
golangci-lint linter Installation Docs
brew install golangci/tap/golangci-lint
docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint "golangci-lint" run -v

| | go-task | make / build tool | Installation Docs](https://taskfile.dev/#/installation)
brew install go-task/tap/go-task
sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin |