Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 781 Bytes

README.md

File metadata and controls

39 lines (28 loc) · 781 Bytes

Sphinx Wiki für BSDForen.de

build deploy

Virtuelle Python Umgebung erstellen

~% python -m venv sphinx
~% source sphinx/bin/activate
~% pip install --upgrade pip

Git Repo klonen

~% git clone https://github.com/bsdforen/wiki
~% cd wiki

Sphinx in die virtuelle Python Umgebung installieren

~% pip install -U -r requirements.txt

Dokumentation aus den Quellen erstellen

~% sphinx-build -d build/doctrees -b html source build/html
~% firefox build/html/index.html

oder

~% sphinx-autobuild -i "*.swp" -i "*.swx" -b html source build/livehtml
~% firefox http://127.0.0.1:8000