Contributing
Local Setup
Read local installation instructions here: Local Installation
Open Your First Pull Request
1. Create a new branch
Create a new branch from the develop branch. Use a descriptive name for your branch, such as feature/new-feature
or fix/bug-fix
. This makes it easier to understand the purpose of the changes.
2. Make your changes
Make the necessary code changes and commit them to your local branch.
Follow Conventional Commits: Use the format <type>(<scope>): <short description>[optional body][optional footer]
for your commit messages.
Example: feat(api): Add new endpoint for user data
3. Push your changes
Push your local branch to the remote repository:
git push origin <your-branch-name>
4. Create a Pull Request
- Go to the repository on GitHub and navigate to the
Pull Requests
tab. - Click
New pull request
. - Select your branch as the "compare" branch and develop as the "base" branch.
- Give your PR a descriptive title that summarizes the changes.
- Write a clear and concise description of the changes you made and why they are necessary.
- Add any relevant screenshots or GIFs to help visualize the changes.
5. Review and Merge
- Once you submit the PR, it will be reviewed by other developers.
- Address any comments or requested changes from the reviewers.
- Once the PR is approved, it will be merged into the develop branch.
6. Remember
- Always test your changes thoroughly before submitting a PR.
- Keep your PRs focused on a single feature or bug fix.
- Be respectful and responsive to feedback from reviewers.