Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 930 Bytes

File metadata and controls

32 lines (20 loc) · 930 Bytes

Mozmeao Platform Docs

This repo holds the shared documentation for Bedrock, which powers www.mozilla.org, and Springfield, which powers www.firefox.com.

We have shared documentation because they are deliberately similar codebases. Indeed, Springfield started out as a cut-down version of Bedrock.

The documentation is rendered using MkDocs, and the MkDocs Material theme.

Local development

To run the documentation site:

First, create and activate a virtual environment (using pyenv):

pyenv virtualenv 3.13.3 docs
pyenv activate docs

Then install dependencies and run the server:

make install

make serve

To rebuild python dependencies after amending requirements.in:

make deps