This is the source to my website (https://patrick.cloke.us). It is built using Pelican, a static site generator written in Python.
To setup and run, first install the requirements:
pip install -r requirements.txt
Common tasks are handled via Invoke, you can see
all tasks with inv -l
. A normal workflow might be:
# Continually regenerate output files as changes are made.
inv regenerate
# Serve the blog on localhost.
inv serve