This repository contains the code for the application's documentation site. It's built with mkdocs-material.
In order to develop for this repository you need:
- Python 3.12 (but any
>3.12should work fine)
First, clone this repository:
git clone https://github.com/starpep-web/documentationCreate an environment:
python3 -m venv ./venvLoad the environment:
source ./venv/bin/activate(Or, if you're on Windows, you might have to do it with:)
.\env\Scripts\activate.ps1Install the dependencies:
pip install -r requirements.txtRun the mkdocs command to serve the site:
mkdocs serve -a 0.0.0.0:8080And done, the documentation site should be reachable at http://localhost:8080.