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.12
should work fine)
First, clone this repository:
git clone https://github.com/starpep-web/documentation
Create an environment:
python3 -m venv ./venv
Load the environment:
source ./venv/bin/activate
(Or, if you're on Windows, you might have to do it with:)
.\env\Scripts\activate.ps1
Install the dependencies:
pip install -r requirements.txt
Run the mkdocs
command to serve the site:
mkdocs serve -a 0.0.0.0:8080
And done, the documentation site should be reachable at http://localhost:8080
.