This repo contains the documentation for the Wild Me product Codex. Documentation is published with every accepted PR.
- Retirement of product
- Install the prereqs:
- install sphinx
- install sphinx-book-theme:
pip install sphinx-book-theme
- install myst-parser (used by sphinx markdown extension):
pip install myst-parser
- Clone the
wildme-docs
repo:git clone https://github.com/WildMeOrg/wildme-docs.git
To build:
cd
to thedocs
directory:- Run the following commands:
python -m venv .venv source .venv/bin/activate make html
- Files will be in
docs/_build/html/
If you aren't seeing your changes, try make clean html
to force a complete rebuild.
To see files as they will appear online, including url paths:
- In a new terminal,
cd
todocs/_build/html/
python -m SimpleHTTPServer
orpython3 -m http.server
- Open
http://localhost:8000
in your browser