Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 771 Bytes

README.md

File metadata and controls

36 lines (27 loc) · 771 Bytes

SoftwerkerKonf 2020

Dies sind die Quellen von codecentric.github.io/softwerkerkonf. PRs sind offen!

Anpassungen

Die Startseite wird in index.md zusammengestellt. Die Abschnitte werden in einzelnen Dateien gepflegt, damit sie einfach austausch- und umsortierbar sind.

Das Deployment findet von GitHub Pages automatisch statt -- jeder Push (auf master) ein Release!

Lokales Testen

Mit Installation von Jekyll:

jekyll serve --watch --force_polling -H 0.0.0.0 -P 4000

Oder ohne, dafür mit Docker:

docker run -it --rm \
    -v "$PWD":/srv/jekyll \
    -p "4000:4000" \
    jekyll/jekyll \
    jekyll serve --watch --force_polling -H 0.0.0.0 -P 4000