The documentation is made with the tool mkdocs which can be found here.
- (optional) virtualenv for installing mkdocs
- Install mkdocs
pip install mkdocs
There are a lot of files in this directory for the docs to be correct they had to all be built put in the root. The two things you need to edit in order to update the site are:
- docs/ - directory that contains the MarkDown pages
- mkdocs.yml - yaml for the navbar and update theme, etc.
- Startup mkdocs in serve mode
mkdocs serve
- Start editing files and it will update live
- Run the mkdocs build command to update site
mkdocs build
- Copy site files to root directory
cp -R site/* .
- Push your changes up the repo
git commit -m "Message"
git push