Skip to content
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.

Latest commit

 

History

History
48 lines (37 loc) · 2.21 KB

development.md

File metadata and controls

48 lines (37 loc) · 2.21 KB

Development Guide

Prerequisite

Developer quick start

  • Setup GIT_HOST to override the setting for your custom path.
export GIT_HOST=github.com/<YOUR_GITHUB_ID>
  • Run the linter and test before building the binary.
make check
make test
make build
  • Build and push the docker image for local development.
export IMG=<YOUR_CUSTOMIZED_IMAGE_NAME>
export REGISTRY=<YOUR_CUSTOMIZED_IMAGE_REGISTRY>
make build-push-images

Note: You need to login the docker registry before running the command above.