Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 1.1 KB

File metadata and controls

36 lines (23 loc) · 1.1 KB

Development

Development Container

  1. Docker / Podman
  2. VSCode (or other supported IDE)
  3. Remote-Containers extension

Native

  1. Go 1.20+
  2. Make

Getting Started

First, clone this repository and make sure you have your enviornment all setup.
For support IDEs users, you can simply run this project in a container (aka devcontainer):

The option would be available once you install the recommended extension.

See more details here

Code Signoff

Before making a commit, please make sure your git configuration includes your full name and email address. You can do this by running the following commands:

git config --global user.name "Your Name"
git config --global user.email "youremail@example.com"

When committing code, please include a signoff line in your commit message. You can use the --signoff or -s flag when using the git commit command to automatically add the signoff line. For example:

git commit -s -m "Commit message"