Static site for the Django birthday website
This is a Hugo project.
In docker-compose.yml
, we have specified a serve
target which you can run locally like this:
docker compose run --rm -u `id -u` --service-ports serve
Go to Hugo Github release and fetch the latest package for hugo_extended for your system.
We want to align with the latest version always. If it doesn't work, file an issue!
Example recipe for Ubuntu/Debian:
# Fetch .deb package from GitHub
wget https://github.com/gohugoio/hugo/releases/download/v0.147.9/hugo_extended_0.147.9_linux-amd64.deb -O hugo_extended.deb
# Install package
sudo apt install ./hugo_extended.deb
# Now from inside the cloned copy of this repository, run the Hugo development server:
hugo server