We adhere to the principles outlined in PEP 8
Thank you for your interest in contributing to our Python project! Below are the steps to guide you through becoming a part of our developer community.
Visit the repository page on GitHub and click the "Fork" button in the upper right corner. This action will create a copy of the project in your account.
$ git clone https://github.com/DavidRomanovizc/DatingBot.git
Refer to the instructions above for deploying the project on a local computer (Development Guide).
Create a new branch for your changes:
$ git checkout -b branch-name
Make the necessary adjustments to the project code while adhering to the project's structure, coding style, and development guidelines.
After making changes, execute the following commands to maintain code formatting:
- Run isort to organize imports.
- Run black to ensure consistent code style.
- Run ruff for additional code quality checks.
These steps help maintain a clean and consistent codebase.
$ git commit -m "Description of your changes"
$ git push origin your-branch-name
Navigate to your repository on GitHub and click the "New Pull Request" button. Specify the base branch of the project and the branch with your changes.
Engage in discussions about your Pull Request with community members. Make necessary changes based on the feedback received.
Upon approval, your code will be merged into the main branch of the project.
Congratulations! You have successfully contributed to the Python project. Thank you for your invaluable help!