Thank you for considering contributing to Calmora! We appreciate any help you can provide, whether it’s reporting an issue, improving the documentation, or submitting code.
- Fork the Repository: Fork the repository to your own GitHub account.
- Create a New Branch: Make sure to create a new branch for your changes:
git checkout -b feature/my-new-feature
- Make Your Changes: Develop your feature or fix your bug. Make sure the code adheres to our coding standards.
- Write Tests: If you're adding functionality, please add tests that cover your changes.
- Commit Your Changes: Follow conventional commit messages to describe your changes:
git commit -m "feat: add new feature"
- Push Your Changes: Push your changes to your forked repository:
git push origin feature/my-new-feature
- Create a Pull Request: Once your changes are pushed, open a pull request to the main branch of the original repository.