I have a django project, which I document using reST in docstrings to do the following:
- Help diagloags within IDE
- Later on to build HTML documentation using Sphinx
My documentation shows up properly within IDE (PyCharm), however I can't configure Sphinx to generate HTML documentation for me.
Here is the structure of my project
+--------------------------------------------+
| /saassapp # django project path |
| /docs # dir for sphinx |
| conf.py # sphinx config file |
| ... |
| settings.py # django settings |
| /studyview # django app |
| ...
| ... |
+--------------------------------------------+
Any ideas? An examle of the conf.py file would be very useful. Thank you.
EDIT
My project name is saassapp and the module I am trying to make a doc for is called studyview.
- Sphinx
conf.py
file: http://pastebin.com/HTYdc1rR - Sphinx
index
file: http://pastebin.com/bu1r38TQ - Result of
make html
: http://pastebin.com/MWJj94EE
make html
command, I get errors regarding importing django settings... – Liturgical