This folder contains build and utility scripts.
This script builds the binaries for the repository, if any are produced.
To build all platforms, use the following:
./scripts/build.shTo build specific platform (e.g., linux and darwin), use the following:
./scripts/build.sh linux darwinThis script bumps dependencies.
If you have a clean local source, you can create a dependency branch and push to origin using the following:
./scripts/bumpdep.shTo bump dependencies in your local, without creating a separate git branch, use the following:
./scripts/bumpdep.sh --localThis script generates code and is used by generate.go.
To generate everything, use the following:
./scripts/generate.shTo run a specific generator (e.g., mocks), use the following:
./scripts/generate.sh mocksTo specify multiple generators (e.g., gateway and proto), use the following:
./scripts/generate.sh gateway proto