devilbox/docs/README.md

38 lines
936 B
Markdown
Raw Normal View History

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
```
sudo pip install sphinx sphinx-autobuild
sudo pip install sphinx_rtd_theme
2017-06-10 13:33:28 +02:00
```
2018-04-11 08:43:15 +02:00
#### How to build
```
cd docs/
sphinx-autobuild . _build/html
```
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-04-11 08:43:15 +02:00
Open you browser on http://127.0.0.1:8000
2017-06-10 13:33:28 +02:00
2017-06-17 13:09:30 +02:00