Source files for the https://eist.radio website.
Install Hugo, see: 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!
Add noindex = true if you don't want the page to be indexed by the Goog.
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
chmod +x generate-artist-pages.sh
chmod +x hugo-start.sh
./generate-artist-pages.sh
./hugo-start.shOn Windows:
set API_KEY=xxxxxPR 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