2017-06-08 09:25:03 +02:00
|
|
|
# Devilbox Documentation
|
|
|
|
|
2018-04-11 08:43:15 +02: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 17:49:48 +01:00
|
|
|
|
|
|
|
|
2018-04-11 08:43:15 +02:00
|
|
|
## Documentation
|
2016-11-06 17:49:48 +01:00
|
|
|
|
2018-04-11 08:43:15 +02:00
|
|
|
The documentation is available online: https://devilbox.readthedocs.io
|
2017-05-27 17:39:33 +02:00
|
|
|
|
2018-04-11 08:43:15 +02: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 17:39:33 +02:00
|
|
|
|
2017-06-10 13:33:28 +02:00
|
|
|
|
2018-04-11 08:43:15 +02:00
|
|
|
## Local setup
|
2017-06-10 13:33:28 +02:00
|
|
|
|
2018-04-11 08:43:15 +02:00
|
|
|
You can also build the documentation locally before pushing to ensure everything looks fine:
|
2017-06-10 13:33:28 +02:00
|
|
|
|
2018-04-11 08:43:15 +02:00
|
|
|
#### Requirements
|
2017-06-10 13:33:28 +02:00
|
|
|
|
2018-04-11 08:43:15 +02:00
|
|
|
```
|
2018-12-26 17:31:23 +01:00
|
|
|
sudo pip install sphinx sphinx-autobuild recommonmark
|
2018-04-11 08:43:15 +02:00
|
|
|
sudo pip install sphinx_rtd_theme
|
2017-06-10 13:33:28 +02:00
|
|
|
```
|
2018-06-03 20:17:21 +02:00
|
|
|
#### How to build and error-check
|
|
|
|
```
|
|
|
|
cd docs/
|
2018-07-03 15:47:58 +02:00
|
|
|
make build
|
2018-06-03 20:17:21 +02:00
|
|
|
```
|
2017-06-10 13:33:28 +02:00
|
|
|
|
2018-06-03 20:17:21 +02:00
|
|
|
#### How to build continuously
|
2018-04-11 08:43:15 +02:00
|
|
|
```
|
|
|
|
cd docs/
|
2018-07-03 15:47:58 +02:00
|
|
|
make autobuild
|
2018-04-11 08:43:15 +02:00
|
|
|
```
|
2017-06-22 11:32:43 +02:00
|
|
|
|
2018-04-11 08:43:15 +02:00
|
|
|
#### How to view
|
2017-06-10 13:33:28 +02:00
|
|
|
|
2018-07-03 15:47:58 +02:00
|
|
|
When using `make autobuild` your documentation is served at: http://127.0.0.1:8000
|