Skip to content
Snippets Groups Projects
Unverified Commit 308aef86 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Configure Sphinx for Django.

parent 715feb6d
No related branches found
No related tags found
No related merge requests found
......@@ -12,10 +12,11 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
# import os
# import sys
# sys.path.insert(0, os.path.abspath('.'))
import os
import sys
sys.path.insert(0, os.path.abspath('..'))
os.environ['DJANGO_SETTINGS_MODULE'] = 'biscuit.core.settings'
django.setup()
# -- Project information -----------------------------------------------------
......@@ -24,9 +25,9 @@ copyright = '2019, BiscuIT team @ Teckids e.V.'
author = 'BiscuIT team @ Teckids e.V.'
# The short X.Y version
version = ''
version = '1.0'
# The full version, including alpha/beta/rc tags
release = ''
release = '1.0dev0'
# -- General configuration ---------------------------------------------------
......@@ -40,6 +41,8 @@ release = ''
# ones.
extensions = [
'sphinx.ext.autodoc',
'sphinxcontrib_django',
'sphinx_autodoc_typehints',
'sphinx.ext.intersphinx',
'sphinx.ext.viewcode',
]
......@@ -51,7 +54,7 @@ templates_path = ['_templates']
# You can specify multiple suffix as a list of string:
#
# source_suffix = ['.rst', '.md']
source_suffix = '.md'
source_suffix = ['.rst', '.md']
# The master toctree document.
master_doc = 'index'
......@@ -181,4 +184,5 @@ epub_exclude_files = ['search.html']
# -- Options for intersphinx extension ---------------------------------------
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'https://docs.python.org/': None}
intersphinx_mapping = {'https://docs.python.org/': None,
'https://docs.djangoproject.com/en/stable': 'https://docs.djangoproject.com/en/stable/_objects'}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment