mirror of
https://github.com/cytopia/devilbox.git
synced 2025-01-01 10:36:39 +00:00
38 lines
936 B
Markdown
38 lines
936 B
Markdown
# Devilbox Documentation
|
|
|
|
The Devilbox documentation is build via [sphinx](http://www.sphinx-doc.org/en/master) and
|
|
automatically updated on [readthedocs](https://devilbox.readthedocs.io) by every git push.
|
|
|
|
|
|
## Documentation
|
|
|
|
The documentation is available online: https://devilbox.readthedocs.io
|
|
|
|
<a href="https://devilbox.readthedocs.io" title="Devilbox Documentation">
|
|
<img style="width:200px;height:200px;" widh="200" height="200" title="Devilbox Documentation" name="Devilbox Documentation" src="https://raw.githubusercontent.com/cytopia/icons/master/400x400/readthedocs.png" />
|
|
</a>
|
|
|
|
|
|
## Local setup
|
|
|
|
You can also build the documentation locally before pushing to ensure everything looks fine:
|
|
|
|
#### Requirements
|
|
|
|
```
|
|
sudo pip install sphinx sphinx-autobuild
|
|
sudo pip install sphinx_rtd_theme
|
|
```
|
|
|
|
#### How to build
|
|
```
|
|
cd docs/
|
|
sphinx-autobuild . _build/html
|
|
```
|
|
|
|
#### How to view
|
|
|
|
Open you browser on http://127.0.0.1:8000
|
|
|
|
|