Hacking a website together one kludge at a time.
Install Hugo: https://gohugo.io/installation/
Add a new markdown file with a TOML format header into the content/ folder:
+++
title = "The title!"
date = 2024-11-19T20:23:18Z
draft = false
+++
Add some text!
Get the API key from RadioCult and save it in a .env file locally, for example:
cat .env
API_KEY=<REDACTED>Then:
source .env
export API_KEY
hugo serverPR previews are deployed using Surge. Preview links are posted in the PR.
Website is based on this Hugo template: https://github.com/1bl4z3r/hermit-V2