This site is powered by the middleman static site generator, running inside a Docker container.
You can use docker compose
to build the image and run the middleman server:
docker compose build
docker compose up
and can build the site using:
docker build -t danielhollands . && docker run -v build:/usr/src/app/build danielhollands
Alternatively you can use the following commands from inside the docker container:
middleman server [options] # Start the preview server
middleman build [options] # Builds the static site for deployment
middleman console [options] # Start an interactive console in the context of your...
The site is hosted on Netlify, deployed automatically upon pushing commits to master.