(learn_sphinx)➜ sphinx git:(master) ✗ pip install sphinx
(learn_sphinx)➜ sphinx git:(inicializando_a_doc) mkdir docs (learn_sphinx)➜ sphinx git:(inicializando_a_doc) cd docs(learn_sphinx)➜ docs git:(inicializando_a_doc) sphinx-quickstart> Root path for the documentation [.]: <ENTER>> Separate source and build directories (y/N) [n]: y> Name prefix for templates and static dir [_]:> Project name: Learn Sphinx Documentation> Author name(s): Lucas Simon Rodrigues Magalhaes> Project version: 0.0.1> Project release [0.0.1]:> Source file suffix [.rst]:> Name of your master document (without suffix) [index]:> Do you want to use the epub builder (y/N) [n]: y> autodoc: automatically insert docstrings from modules (y/N) [n]: y > doctest: automatically test code snippets in doctest blocks (y/N) [n]: y > intersphinx: link between Sphinx documentation of different projects (y/N) [n]: y > coverage: checks for documentation coverage (y/N) [n]: y > viewcode: include links to the source code of documented Python objects (y/N) [n]: y> Create Makefile? (Y/n) [y]: y > Create Windows command file? (Y/n) [y]: y
source_encoding = 'utf-8-sig' language = 'pt_br' html_theme = 'default'sys.path.insert(0, os.path.abspath("../.."))
from unipath import Path
DJANGO_PROJECT_DIR = Path(__file__).ancestor(3)
SETTINGS_SPHINX = DJANGO_PROJECT_DIR.child('sphinx')
CORE_SPHINX = DJANGO_PROJECT_DIR.child('core').absolute()
sys.path.append(str(SETTINGS_SPHINX))
sys.path.append(str(CORE_SPHINX))
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings.base")(learn_sphinx)➜ docs git:(inicializando_a_doc) ✗ make html(learn_sphinx)➜ docs git:(inicializando_a_doc) ✗ python -m SimpleHTTPServer 9000