This repo contains the documentation for Wild Me's Scout. Documentation is published with every accepted PR.
The documentation will eventually support:
- internationalization
- versioning
- 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
scout-docsrepo:git clone https://github.com/WildMeOrg/scout-docs.git
To build:
cdto thedocsdirectory:- 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,
cdtodocs/_build/html/ python -m SimpleHTTPServerorpython3 -m http.server- Open
http://localhost:8000in your browser
TBD