About
Welcome to the "About" section! Here you will find information about Rapidy.
About the Project
Owner
My name is Daniil Grois @daniil-grois, and I am the creator, owner, and lead developer of Rapidy.
Thank you for your interest in the project! I hope Rapidy helps you build your own solutions.
I welcome your ideas and contributions—feel free to open Pull Requests, and I will do my best to integrate your work into Rapidy.
Let's make the world a better place together! 🚀
Maintenance and Development
Current maintainers of Rapidy:
- Daniil Grois - @daniil-grois
- Lev Zaplatin - @LevZaplatin
- Nikita Tolstoy - @Nikita-Tolstoy
The maintainers define the development strategy, prioritize enhancements, and manage the project's roadmap.
Version Numbering
Rapidy follows the Semantic Versioning standard.
Version format: MAJOR.MINOR.PATCH
MAJOR – incremented for incompatible API changes
MINOR – incremented for new functionality that is backward compatible
PATCH – incremented for bug fixes that do not break compatibility
Additional labels are available for pre-release and build metadata.
How to Contribute
Want to help improve Rapidy? Here’s how!
Workflow
- Fork the Rapidy repository here.
- Clone your fork locally:
- (Optional) Install Poetry if not already installed: For more installation options, check the Poetry documentation.
- Navigate to the repository folder.
- Set up the environment:
- Install dependencies:
- Install pre-commit hooks:
- Activate the virtual environment:
- Run tests to ensure everything is working:
- Create a new branch. All branches should start with a
<prefix>/
indicating the type of change. For example:bug/fix-any
/feature/my-awesome-feature
. - Make your code changes.
- Write tests for your changes.
- Run linters and format the code:
- Commit your changes using the format
<branch number>: <commit message>
. - Push your changes to your fork:
- Open a Pull Request here,
providing a clear description in the format
<branch number>: <PR description>
.
Code Style
- The code must be fully type-annotated.
- All changes must be covered by tests.
- The code should follow PEP 8.
- Backward compatibility should be maintained whenever possible.
- Add yourself to
CONTRIBUTORS.md
and this documentation section. - Update the documentation (if needed).