contributing
How to contribute#
- Install Python 3.13.1 or later.
- Install the required packages:
pip install -r requirements.txt
- Go to the
docsdirectory:
cd r2docs
- Serve the documentation locally:
mkdocs serve
Contributing#
If you would like to contribute to this project, please follow these steps:
- Fork the repository on Github and clone it to your local machine.
# replace YOURUSERNAME with your github username
git clone https://github.com/<YOURUSERNAME>/twr2docs.git
cd twr2docs
- Create a new branch for your feature or bug fix.
git checkout -b feature/my-feature
- Make your changes and commit them.
git add .
git commit -m "Add my feature"
- Push your changes to your forked repository.
git push origin feature/my-feature
- Create a pull request to the main repository.