Thank you for your interest in contributing to this project! We welcome contributions from developers of all skill levels, including participants in GSSoC'25 (GirlScript Summer of Code 2025) and the broader open-source community.
- Navigate to the main repository page on GitHub
- Click the "Fork" button in the top-right corner
- This creates a copy of the repository in your GitHub account
Clone the forked repository to your local machine:
git clone https://github.com/YOUR-USERNAME/REPOSITORY-NAME.git
cd REPOSITORY-NAMEAlways create a new branch for your work. Never commit directly to the main branch:
git checkout -b your-branch-nameUse descriptive branch names like:
feature/add-login-pagefix/navbar-responsive-issuedocs/update-readme
- Write clean, readable code
- Follow the existing code style and structure
- Test your changes thoroughly before committing
- Ensure your changes do not break existing functionality
Write clear and meaningful commit messages:
git add .
git commit -m "Brief description of changes"Good commit message examples:
Add user authentication featureFix responsive design issue in headerUpdate documentation for API endpoints
Avoid vague messages like:
UpdateFix bugChanges made
Push your branch to your forked repository:
git push origin your-branch-name- Go to your forked repository on GitHub
- Click "Compare & pull request"
- Fill out the pull request template with all required information
- Add a clear title and description of your changes
- Link the related issue using keywords like
Closes #issue-numberorFixes #issue-number - Attach proof of work (screenshots or videos showing before/after changes)
- Submit the pull request
Every pull request must include:
- Clear title describing the change
- Detailed description of what was changed and why
- Reference to the related issue number
- Proof of work (screenshots or video demonstration)
- Confirmation that the code has been tested
- Ensure your code follows the project's coding standards
- Test all functionality affected by your changes
- Update documentation if you are adding new features
- Make sure your branch is up to date with the main branch
- Resolve any merge conflicts before submitting
- Use present tense ("Add feature" not "Added feature")
- Keep the first line under 50 characters
- Provide additional details in the body if necessary
- Reference issues and pull requests when relevant
- Maintainers will review your pull request
- You may be asked to make changes or clarifications
- Address all review comments promptly
- Once approved, your pull request will be merged
Contributors who successfully submit merged pull requests will receive:
- Pro Github Contributor Badge: Awarded for quality contributions
- Dev Slayer Badge: Awarded for significant contributions to the project
These badges recognize your valuable contributions to the open-source community.
This project adheres to the Contributor Covenant Code of Conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to the project maintainers.
Reference: Contributor Covenant
- Use the issue tracker to report bugs
- Describe the bug clearly with steps to reproduce
- Include screenshots or error messages if applicable
- Specify your environment (OS, browser, version)
- Submit feature requests through the issue tracker
- Clearly describe the feature and its benefits
- Explain why this feature would be useful to the project
- Look for issues labeled
good first issueorhelp wanted - GSSoC'25 participants should look for issues labeled
Gssoc2025 - Always discuss major changes in an issue before starting work
- Improve existing documentation
- Add examples and clarifications
- Fix typos and grammatical errors
- Ensure documentation stays up to date with code changes
Before submitting your pull request:
- Test all new features thoroughly
- Verify that existing functionality is not broken
- Test on different browsers/devices if applicable
- Include screenshots or videos demonstrating the changes
If you need help or have questions:
- Check existing documentation and issues
- Comment on the related issue for clarification
- Reach out to maintainers through issue comments
- Be patient and respectful when seeking assistance
We now provide interactive GitHub Issue Forms to make filing bugs, feature requests, and questions easier and more structured. To create a new issue:
- Click the repository's "New issue" button on GitHub.
- Choose the appropriate form: "Bug report", "Feature request", or "Question / Support".
- Fill the required fields in the form — required fields will prevent submission until completed.
These forms automatically apply labels (e.g., bug, enhancement, question) to help maintainers triage incoming reports. If you prefer the old templates, legacy copies are preserved in .github/ISSUE_TEMPLATE/legacy/.
- Do not submit AI-generated code without understanding and reviewing it
- Ensure your contributions are original or properly attributed
- Respect the project's coding style and conventions
- Be responsive to feedback and review comments
By contributing to this project, you agree that your contributions will be licensed under the same license as the project.
Thank you for contributing to this project and being part of our open-source community!