This repo holds the files of my blog davelee.uk.
This blog is built with Hugo, one of the most popular and fast open-source static site generators.
Hugo and Git must be installed and configured.
# Clone the repo
git clone git@github.com:thelovebug/davelee.uk.git
# Pull the theme files (Git submodule)
git submodule update --init --recursive# Update the repo
git pull
# Update the theme files (Git submodule)
git submodule update --remote --merge# Start Hugo locally
hugo server -D --disableFastRender --bind 0.0.0.0 --baseURL http://<LAN_IP>:1313
# This will serve the blog to all LAN addresses, so tests can be made from multiple devices.