Skip to content
This repository was archived by the owner on Jul 21, 2021. It is now read-only.

lotharschulz/sphinx-pages

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7f9ba2b · Dec 12, 2017

History

35 Commits
Dec 9, 2017
Dec 5, 2017
Dec 5, 2017
Dec 9, 2017
Dec 5, 2017
Dec 5, 2017
Dec 12, 2017
Dec 9, 2017
Dec 9, 2017
Dec 5, 2017
Dec 9, 2017
Dec 9, 2017

Repository files navigation

Sphinx-Pages

github pages based on sphinx

With calling the sphinx-2-gh-pages-converter shell script you can publish your sphinx based documentation to github pages. The documentation will be available following this pattern:

https//:[github-handle].github.io/[repository]

(e.g. https://lotharschulz.github.io/sphinx-pages/)

Github.com enables pages automatically if a gh-pages branch exists: gh-pages recognition

Preconditions

  • git repository exists in current directory
  • sphinx files are part of master branch
  • git remote is defined
  • permissions to pull, push are granted to the user executing the script
  • os package manager is apt-get
  • python, pip is installed

Project notes

Installation
apt-get install python-sphinx #sudo apt-get install python-sphinx
pip install sphinx_rtd_theme #sudo -H pip install sphinx_rtd_theme
#optional
pip install sphinx-autobuild #sudo -H pip install sphinx-autobuild
Project setup
sphinx-quickstart # followed all default but set names and author
# conf.py edits as described in https://github.com/rtfd/sphinx_rtd_theme#via-package
# a sample index.rst file
# .gitignore from https://github.com/sphinx-doc/sphinx/blob/master/.gitignore
# generate docs locally
sphinx-build -b html . _build
#optional
sphinx-autobuild . _build --open-browser # opens built docs in browser

Blog Post