Documentation site built with MkDocs and the Material theme.
- Python 3.8+
- pip
-
Clone the repository
git clone https://github.com/ovesorg/financial-reports.git cd financial-reports -
Install dependencies
pip install -r requirements.txt
-
Serve locally
mkdocs serve
Documentation will be available at http://127.0.0.1:8000
To build the static site:
mkdocs build --cleanOutput will be in the site/ directory.
.
├── docs/ # Documentation source files
│ └── adr/ # Progressive architecture decisions for this repo
│ └── reference/ # Terminology and important external references
├── overrides/ # Theme customization
│ ├── javascripts/ # Custom JavaScript
│ ├── partials/ # Template overrides
│ └── stylesheets/ # Custom CSS
├── mkdocs.yml # MkDocs configuration
├── requirements.txt # Python dependencies
└── README.md # This file
Clean rebuild and restart the documentation server:
mkdocs-oves-krrRender PlantUML diagrams:
mkdocs-oves-render- Edit Markdown files in
docs/ - Record architecture decisions in
docs/adr/when they change repo direction - Keep terminology and important external references under
docs/reference/ - Keep
Referenceas the last top-level section inmkdocs.yml - Test locally with
mkdocs serve - Commit and push changes
For issues or questions, please open an issue in this repository.