Site setup using Hugo, Azure Blob and GitHub Actions

I’ve launched blog.ckhill.com given the following:

  1. I didn’t have anything hosted at ckhill.com currently.
  2. My dad was asking me questions about HTML and site development and I hadn’t done anything in the space in a couple of years so I wanted to see what new approaches had emerged.
  3. I wanted to experiment with Azure capability since Azure Cloud is rapidly growing as a viable AWS alternative.
  4. I wanted to capture some thoughts as we move from China to Singapore.
  5. I want to capture learning as I grow my Data Science skills.

Tutorials Followed

As with most attempts to learn/do I relied heavily on Google and the postings of others. From work conversations I was interested in static site deployment approaches with little/zero server infrastructure. These interests ended up directing me to Andrew Connell’s excellent tutorial series:

Unfortunately I initially skipped Andrew’s Automating Hugo releases with Azure Pipelines article as I was more interested in GitHub Actions. This resulted in me not understanding some parts of Hugo deployment setup and I was really stuck on why my “hugo deploy” step was failing with a Error: no deployment targets found message in GitHub Actions workflow. Fortunately I eventually read:

I also occasionally needed to reference the following as my Markdown is really rusty:

The GitHub repository behind this site is now at ckevinhill/ckhill-blog.
The Azure blob endpoint is blogckhillcom.
The CDN endpoint is ckhill.

Tooling

The only tools that were really required for site launch and development included:

  • Git Bash - used for Git commits/pushes to GitHub.
  • VS Code - used for editing configuration and markup files.
  • Hugo - used to transform configuration, theme and markup files into static website.
  • Azure Portal - used for Azure service configuration.

As a side note one cool aspect of Hugo is that I can leave it running on local environment with hugo server -D and get a real-time updated view of edits I make before I push them to Master branch at GitHub for deployment to ckhill.com.

Follow-up Questions / Tasks

I have both HTTP and HTTPS enabled for this site as I was unable to figure out how to best redirect HTTP requests to HTTPS. You are supposed to be able to do this with the Azure Microsoft CDN Rules Engine but I was unable to find these options in Azure Portal.

I am assuming that I will be able to integrate Jupyer Notebook outputs (exported to Markdown or HTML or other) into future posts but I’m not sure how that will work yet.

There is still alot of tweaking/configuration that I need to do for Hugo:

  • Implement Google Analytic tracking
  • Better understand how taxonomies are managed (i.e. what is the difference between a tag, category and series?)
  • What can be configured in the front matter of a post and specifically what does the slug parameter do?
  • Modify design templates to eliminate some of the things that annoy me (extra spacing, favicon, etc.)
  • Figure out how to get Search to work with a static website.

Additional post on CDN Invalidation can be found here