Skip to content

Latest commit

 

History

History
62 lines (37 loc) · 1.03 KB

File metadata and controls

62 lines (37 loc) · 1.03 KB

Contributing to bootnode

🎉 First off, thanks for taking the time to contribute! 🎉

bootnode is a minimal Express + MongoDB backend bootstrap template.
We welcome contributions of all kinds — bug fixes, documentation improvements, feature requests, and code enhancements.


How to Contribute

1. Fork & Clone

  • Fork the repository on GitHub.
  • Clone your fork locally:

  git clone https://github.com/Moses-main/bootnode.git

  cd bootnode

2. Create a Branch

Use a descriptive name for your branch:

git checkout -b fix/typo-in-readme

or

git checkout -b feature/add-auth-middleware

3. Make Your Changes

  • Follow the coding style already used in the project.
  • Keep changes small and focused.

4. Commit Your Changes

Write meaningful commit messages:

git commit -m "Fix: typo in README instructions"

6. Push and Open a Pull Request

git push origin your-branch-name

Then, open a PR on the repository.


Thank you for contributing to bootnode! 🚀