We are excited that you are interested in contributing to InfraBoard! This document provides guidelines for contributions to the project.
Contributions to InfraBoard can take many forms. Here are some ways you can help:
- Reporting Bugs: If you find a bug, please create an issue in our issue tracker.
- Suggesting Enhancements: Have ideas on how to make InfraBoard better? Open an issue with your suggestion.
- Code Contributions: If you want to write code for InfraBoard, that's great! Start by looking at our open issues.
-
Fork the Repository: Start by forking the InfraBoard repository to your GitHub account.
-
Clone the Forked Repository: Clone your fork to your local machine.
-
Create a New Branch: Create a branch for your contribution (
git checkout -b feature/YourFeature
). -
Make Your Changes: Work on the changes you wish to make.
-
Test Your Changes: Ensure your changes do not introduce any new bugs or issues.
-
Commit Your Changes: Commit your changes with a clear commit message (
git commit -m 'Add YourFeature'
). -
Push to Your Branch: Push your changes to your branch (
git push origin feature/YourFeature
). -
Open a Pull Request: Go to the InfraBoard repository and open a pull request from your branch.
To contribute to InfraBoard, always push new features or bug fixes to a feature/bug branch first. Then, raise a pull request (PR) from your feature/bug branch to the test branch for review. It's crucial to target the test branch with your PRs to ensure changes are tested before merging into the master/stage codebase. This approach helps maintain the stability and quality of the project.
- Ensure your code adheres to the project's coding standards.
- Write clean, readable, and maintainable code.
- Include comments in your code where necessary.
If you are adding new features or making changes that require documentation updates, please include them in your pull requests.
- Keep pull requests concise and focused on a single issue or feature.
- Provide a detailed description of your changes in the pull request.
- Reference any relevant issue numbers in your pull request description.
Please note that this project is released with a Contributor Code of Conduct. By participating in this project, you agree to abide by its terms.
If you have any questions or need assistance, feel free to open an issue for discussion.
Thank you for contributing to InfraBoard, and we look forward to your contributions!