Skip to content

bsdforen/wiki

Repository files navigation

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