Documentation for SaaS Pegasus: the Django SaaS Boilerplate.
The latest docs can be found at docs.saaspegasus.com.
This project uses Sphinx.
Install using your favorite version from Sphinx's options.
The maintainer uses the pip version via pip install -r requirements.txt
To build docs run make html
.
You can use python to serve your docs locally after building them:
cd _build/html
python -m http.server 8080
The docs should now be visible at http://localhost:8080.
The following one-liner may be useful to clean, build, and serve the docs. Run this in the _build/html
folder.
cd ../../ && rm -r _build && make html && cd _build/html/ && python -m http.server 8080
Deployment is handled by Netlify. The latest master is automatically deployed.