Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 613 Bytes

CONTRIBUTING.md

File metadata and controls

30 lines (21 loc) · 613 Bytes

Contributing

Install requirements

  • Python 3.11 or newer
  • VENV is highly recommended
  • Linux-based host highly recommended

Setup

# create a venv at project root with name of {path}
source .venv/{path} # will be gitignored
pip install mkdocs
pip install -r requirements.txt
pip install mkdocs-material

Dev Interactively

mkdocs serve

changes made in docs/ will be reflected in the browser session.

References