Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 902 Bytes

File metadata and controls

49 lines (31 loc) · 902 Bytes

Documentation

This repository contains the code for the application's documentation site. It's built with mkdocs-material.

Requirements

In order to develop for this repository you need:

Development

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.