Go Kit is a repository of utilitary packages written in Go.
Before getting started with go-kit, ensure your runtime environment meets the following requirements:
- Programming Language: Go
- Package Manager: Npm, Go modules
- Container Runtime: Docker
Use any go-kit package in your project following the command:
❯ go get github.com/lcnascimento/go-kit/<desired packaged>Run the test suite using the following command:
❯ make test.unit-
env -
errors -
o11y -
validator -
httpclient -
grpcserver -
messaging -
featureflag
- 💬 Join the Discussions: Share your insights, provide feedback, or ask questions.
- 🐛 Report Issues: Submit bugs found or log feature requests for the
go-kitproject. - 💡 Submit Pull Requests: Review open PRs, and submit your own PRs.
Contributing Guidelines
- Fork the Repository: Start by forking the project repository to your github account.
- Clone Locally: Clone the forked repository to your local machine using a git client.
git clone https://github.com/lcnascimento/go-kit
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'feat(package): Implemented new feature x.' - Push to github: Push the changes to your forked repository.
git push origin feat/new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
- Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!
