First off, thanks for taking the time to contribute! 🚀
This document outlines the guidelines for contributing to the Fury Drone Project.
-
Reporting Bugs:
Found a bug? Create a new issue on GitHub. -
Suggesting Enhancements:
Have ideas for improvements? Open an issue with your suggestion. -
Fixing Issues:
Pick an open issue and submit a pull request (PR) with your solution. -
Improving Documentation:
Enhance clarity, fix typos, or add missing details in the documentation.
Before you start contributing, ensure you have the following:
- Fork the repository to your GitHub account.
- Clone your fork locally:
git clone https://github.com/yourusername/Fury-Drone-Project.git cd Fury-Drone-Project
- Follow the Installation Guide (
docs/INSTALLATION.md
) to set up the project.
-
Create a New Branch:
Work on a feature or fix in a new branch.git checkout -b your-branch-name
-
Make Changes:
Modify the code or documentation. -
Commit Changes:
Write clear and concise commit messages.git add . git commit -m "Your detailed description of changes."
-
Push Your Branch:
Push the branch to your forked repository.git push origin your-branch-name
-
Open a Pull Request:
- Go to the main repository on GitHub.
- Click Compare & pull request.
- Fill out the PR template and submit your changes for review.
We welcome contributions in the following areas:
- Expanding the
/tests
folder with more performance test logs. - Enhancing the ROS integration for RealSense cameras.
- Improving and updating the project documentation.
- Fixing open issues (check the Issues tab).
- Include test cases for any new functionality you add.
- Ensure all existing tests pass before submitting a PR:
./run_tests.sh
- Add test logs or results under the
/tests
folder, where applicable.
If you encounter a bug, please:
- Search the existing issues to ensure it hasn’t been reported.
- Open a new issue with the following details:
- Version of Fury Drone Project you’re using.
- Steps to reproduce the issue.
- Any relevant logs or screenshots.
- Ensure the code compiles and passes all tests.
- Keep your pull request small and focused on a single issue or feature.
- Write a clear PR title and description, referencing related issues (e.g.,
Fixes #123
). - Submit your pull request for review.
- Respond promptly to feedback and make requested changes.
- Coding Style: Follow the Google C++ Style Guide.
- Commit Messages: Write clear and descriptive commit messages.
- Unit Tests: Add tests for new features or bug fixes.
Please adhere to the Code of Conduct in all interactions.
By contributing to this project, you agree that your contributions will be licensed under the project’s MIT License.