Thank you for dedicating your time to contribute to our project.
This guide outlines the contribution workflow to make the process smooth and effective for everyone.
Start by reading the README to understand the project better.
This project is actively being developed.
You can check out the open Issues, monitor the development progress, and contribute.
There are several ways you can contribute:
- Solve open Issues
- Report bugs or suggest features
- Enhance the documentation
Contributions are managed via Issues and Pull Requests (PRs). Here are some general guidelines:
-
Before creating a new Issue or PR, search for existing ones.
-
Contributions should focus on either functionality or style in the PR, not both.
-
If you encounter an error, provide context. Explain what you are trying to do and how to reproduce the error.
-
Follow the repository’s formatting guidelines.
-
Update the README file if your changes affect it.
Use Issues to report problems, request features, or discuss changes before creating a PR.
Browse existing issues to find one that interests you.
If someone is already working on an issue, they will either be officially assigned to it or have left a comment indicating they are working on it. If you would like to work on an issue, please follow these steps:
-
Comment on the Issue: Leave a comment on the issue expressing your intention to work on it. For example, "I would like to work on this issue."
-
Wait for Confirmation: A project maintainer will confirm your assignment by officially assigning the issue to you or by acknowledging your comment.
-
Start Working: Once you have received confirmation, you can start working on the issue.
-
Open a Pull Request: When your work is ready, open a pull request (PR) with your solution. Make sure to mention in the PR that you are working on the issue by referencing the issue number in the PR description (e.g., "This PR addresses issue #123").
By following this process, we can avoid duplication of efforts and ensure clear communication among all contributors.
If no related issue exists, you can create a new one.
Here are some tips:
- Provide detailed context to make it clear for others.
- Include steps to reproduce the issue or the rationale for a new feature.
- Attach screenshots, videos, etc., if applicable.
We use the "fork-and-pull" Git workflow:
-
Fork the repository.
-
Clone the project.
-
Create a new branch with a descriptive name.
-
Commit your changes to this new branch.
-
Push your changes to your fork.
-
Create a pull request from your fork to our repository. Use the
master
branch as the base branch. -
Tag a maintainer to review your PR.
-
Title your PR to clearly describe the work done.
-
Structure the description for easy reading, using bullet points and screenshots if necessary.
-
Link to the related issue, if applicable.
-
Write a concise commit message summarizing the work.
-
We might ask questions, request more details, or ask for changes before merging your PR. This ensures clarity and smooth interaction.
-
As you update your PR, resolve each conversation.
-
Once approved, we will "squash-and-merge" to keep the commit history clean.
Thank you for your contributions!