A field guide to build community networks from scratch
This directory contains the source documentation for the project. The documentation is built using Zensical, a modern static site generator by the creators of Material for MkDocs.
- Python 3
- A virtual environment located at
.venv
If you haven't set up the environment yet, you can create the virtual environment and install dependencies:
# From the project root
python3 -m venv .venv
.venv/bin/pip install -r docs/requirements.txtOn Windows PowerShell:
py -m venv .venv
.\.venv\Scripts\pip install -r docs\requirements.txtTo preview the documentation as you write, serve it locally. The site will automatically refresh when you save changes.
# From the project root
.venv/bin/zensical serveOn Windows PowerShell:
.\.venv\Scripts\zensical.exe serveOpen your browser to http://127.0.0.1:8000/.
To build the static site (output to public/):
# From the project root
.venv/bin/zensical buildOn Windows PowerShell:
.\.venv\Scripts\zensical.exe build