Contributing
How to Contribute
Fork the Repository
Visit the GitHub repository
Click the “Fork” button
Clone your fork locally
Set Up Development Environment
git clone https://github.com/yoooousir/OSSW24_Team6.git cd ReadTheDocs python -m venv docs_env source docs_env/bin/activate # Windows: docs_env\Scripts\activate pip install -r docs/requirements.txt
Create a New Branch
git checkout -b feature/your-feature-name
Make Changes
Write your code
Add tests if needed
Update documentation
Submit Changes
git add . git commit -m "Description of changes" git push origin feature/your-feature-name
Create Pull Request
Go to GitHub
Click “New Pull Request”
Describe your changes
Code Style Guidelines
Follow PEP 8 guidelines
Use meaningful variable names
Add docstrings to functions
Keep functions focused and small