Contributing to MondayToFrame¶
Thank you for considering contributing to MondayToFrame! We appreciate your support.
How to Contribute¶
- Fork the repository: Click the "Fork" button at the top right of the repository page.
- Clone your fork:
sh git clone https://github.com/boukepostma/mondaytoframe.git - Create a branch:
sh git checkout -b feature/your-feature-name - Make your changes: Implement your feature or bug fix.
- Commit your changes:
sh git commit -m "Description of your changes" - Push to your fork:
sh git push origin feature/your-feature-name - Create a Pull Request: Go to the original repository and click "New Pull Request".
Reporting Issues¶
If you find a bug or have a feature request, please create an issue in the Issues section.
Style Guide¶
- Follow the existing code style.
- Write clear and concise commit messages.
- Add comments to explain complex logic.
Testing¶
Ensure that your changes do not break existing tests and add new tests for your features if applicable.
Thank you for your contributions!