2017-06-08 07:25:03 +00:00
|
|
|
# Devilbox Documentation
|
|
|
|
|
2018-04-11 06:43:15 +00:00
|
|
|
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.
|
2016-11-06 16:49:48 +00:00
|
|
|
|
|
|
|
|
2018-04-11 06:43:15 +00:00
|
|
|
## Documentation
|
2016-11-06 16:49:48 +00:00
|
|
|
|
2018-04-11 06:43:15 +00:00
|
|
|
The documentation is available online: https://devilbox.readthedocs.io
|
2017-05-27 15:39:33 +00:00
|
|
|
|
2018-04-11 06:43:15 +00:00
|
|
|
<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>
|
2017-05-27 15:39:33 +00:00
|
|
|
|
2017-06-10 11:33:28 +00:00
|
|
|
|
2018-04-11 06:43:15 +00:00
|
|
|
## Local setup
|
2017-06-10 11:33:28 +00:00
|
|
|
|
2018-04-11 06:43:15 +00:00
|
|
|
You can also build the documentation locally before pushing to ensure everything looks fine:
|
2017-06-10 11:33:28 +00:00
|
|
|
|
2018-04-11 06:43:15 +00:00
|
|
|
#### Requirements
|
2017-06-10 11:33:28 +00:00
|
|
|
|
2018-04-11 06:43:15 +00:00
|
|
|
```
|
|
|
|
sudo pip install sphinx sphinx-autobuild
|
|
|
|
sudo pip install sphinx_rtd_theme
|
2017-06-10 11:33:28 +00:00
|
|
|
```
|
|
|
|
|
2018-04-11 06:43:15 +00:00
|
|
|
#### How to build
|
|
|
|
```
|
|
|
|
cd docs/
|
|
|
|
sphinx-autobuild . _build/html
|
|
|
|
```
|
2017-06-22 09:32:43 +00:00
|
|
|
|
2018-04-11 06:43:15 +00:00
|
|
|
#### How to view
|
2017-06-10 11:33:28 +00:00
|
|
|
|
2018-04-11 06:43:15 +00:00
|
|
|
Open you browser on http://127.0.0.1:8000
|
2017-06-10 11:33:28 +00:00
|
|
|
|
2017-06-17 11:09:30 +00:00
|
|
|
|