Contributing to Docu
Thank you for considering contributing to Docu! This document provides an overview of the contribution workflow and guidelines.
Ways to Contribute
There are many ways to contribute to Docu:
- Reporting bugs
- Suggesting new features
- Improving documentation
- Writing code
- Helping others in issues
Development Environment Setup
- Fork the repository on GitHub
- Clone your fork locally
bash
git clone https://github.com/Himasnhu-AT/docu.git
cd docu
- Create a virtual environment
bash
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
- Install development dependencies
bash
pip install -e ".[dev]"
Project Structure
docu/
: Main package directory__init__.py
: Package initializationcli.py
: Command-line interfacedocgen.py
: Core documentation generationparsers.py
: Python file parsingmodels.py
: Data modelstemplates/
: HTML templates
Running Tests
bash
pytest
Building Documentation
bash
cd doc
npm run build
For more details, see the sections on Code Style and Pull Requests.