Automation / Home Lab / Golang

Netlify + Hugo

/ 9 min read

Migrating this blog from a self-hosted Ghost instance to a new CDN that also builds your site – for free.

In my last blog post, I wrote about migrating some of my self-hosted apps to AWS free tier services as I was getting ready to move from the UK to Australia. I had some time now to get things in order, so I could start preparing for when the free tier expires.

Moving from AWS

AWS is pretty great. I think, if the free EC2 instance wouldn’t expire, I would probably have left my things running on it for another little while. I have a Ghost blog engine running there, a Prometheus and a Grafana instance for monitoring, plus a few hand-made services to pull my GitHub stats and watch for new releases. All in all, happily ticking away with 300 MB memory left and less than 25% of the disk space in use. After the free tier ends, this would cost about $10 a month, which is not bad, it’s just $10 more than I’m willing to pay for it at the moment.

At first, I thought I just move stuff back onto my own servers and host them there, like I did back in the UK. I had a few Raspberry Pi devices set up and started a couple of containers on them to test the connection. This did not go so well…

As it turns out, Australian home internet is not at the same level of speed yet as it was in the UK.

I mean, it’s OK for streaming Netflix and browsing the web and such, not so much for serving content to the internet. Speed tests came back a bit low, so I thought I’ll try and measure it for a few days, see if it has better days and worse.

Speedcheck

This dashboard shows a small Python app measuring the upload speed from Sydney, Australia to the EC2 instance running somewhere in us-west-1. You can see that it averages around 900 kB/s, which – again – is not so bad for a home internet, but it can cost precious milliseconds for uncached requests. It was time to look for alternatives that I had my eyes on for a while now.

Netlify

I wanted to give Netlify a try ever since I’ve heard about them from the amazing @jessfraz:

OK, that sounds really good, but what is this all about? As I quickly learned, it’s basically a CDN that can also generate your static site. Or so I thought… It turns out, Netlify Application Delivery Network is so much more than this, and it is just plain awesome! As they put it on their site:

Distributed just like a CDN, but with advanced functionality for publishing entire sites and applications. Automate builds to prerender content and deploy worldwide to every major cloud provider—including staging, rollbacks, and even A/B testing.

Take my money

And advanced functionality it has, wow! And for free! You can connect it to your site in a Git repository, mine is on GitHub, then you place a netlify.toml file in it, and you’re pretty much done. On every push, Netlify will run the build on your repository, then upload the folder you choose to their ADN. From that moment, you can see your up-to-date site, no invalidation or cache expiry in play.

I thought this must be black magic, so I looked into how it’s done. The trick is that you get content your browser hasn’t seen yet with a proper ETag and Cache-Control: public, max-age=0, must-revalidate headers. Next time you request the same resource and it hasn’t changed, you just get a HTTP 304 Not Modified response, and your browser will load the content from its local cache.

This is a pretty good idea, and it gives very good performance since most requests will result in responses with 0 bytes body and only a couple of headers. Of course, it’s all on HTTP/2, so it’s fine to have lots of these super small requests. Amazing!

Going back to features, you can have automatic branch deploys on a subdomain different to your main one, so you can easily preview and iterate on the changes. This includes content as well as theme and other settings, and also works for pull requests. You can have redirects, forms, Lambda functions and more, check out all the features on the Netlify site!

Wait, there’s more! You can also choose to have an open-source CMS on top of your static site! Mind blown! Netlify CMS is an open-source content management system implemented as a single page application, so its setup is basically adding a single HTML file plus a config YAML file for settings, and you’re done! There’s integration with Netlify, so changes that you make in the CMS UI get committed onto a branch in your Git repository, and they’ll show up on a PR, then you’ll get the preview site for it automatically. Just… wow…

Hugo

Erm… That’s great, but my blog runs on Ghost and Netlify wants a static site. No problem, Netlify is so awesome, that they have a whole website listing all the popular static site generators, so I just had to pick one. Looking at the top few options, there’s Jekyll that is in Ruby, not so sure about that, then also a few JavaScript ones with React, which I don’t know, but then there’s one that stood out, and I have even heard about it before.

Hugo was meant for me. It’s written in Go – that I have newfound love for – and it’s blazing fast with a short learning curve. I’ve read some of the docs, grabbed the latest release, and started experimenting with a theme that I liked.

As a side note, I’ve just realized that Ghost has a pretty well-thought-out solution for the whole Netlify hosting story: https://gatsby.ghost.org/about/
This could have been an option as well, check this out too!

Speaking of themes, I decided to keep the previous Casper theme from Ghost, I only had to adapt it to Hugo. The existing port was a very good starting point, so I mostly just had to bring the hacks changes over that I’ve done on the original one. All in all, the whole theme setup took a couple of hours only, and it now lives in the same repo as the posts. One of the main tasks here was to convert Ghost’s Handlebars templating to Go templates. They’re not too far from each other, but far enough to not being able to automate too much of this.

Next, I had to bring my existing content into the new repository. I had the Markdown version of the posts in a GitHub repo, but as it turns out, they were slightly outdated. No problem, Ghost has a pretty decent API, and I happen to have a Python client library written to talk to it, which is also available on PyPI. I could use this to iterate over my posts easily, and save the Markdown files with the Hugo front-matter added automatically.

from ghost_client import Ghost

if __name__ == '__main__':
    cli = Ghost('https://blog.viktoradam.net', client_id='<cid>', client_secret='<cs>')
    try:
        cli.login('<user>', '<password>')
        
        for idx, post in enumerate(cli.posts.list(
                include=['tags', 'authors'], order='published_at asc', formats=['mobiledoc'], limit='all')):
                
            with open('%03d_%s.md' % (idx+1, post.slug), 'wb') as output:
                def fprint(text):
                    output.write(text.encode('utf-8'))
                    if not text.endswith('\n'):
                        output.write(b'\n')
                        
                title = post.title
                if ':' in title:
                    title = '"%s"' % title
                
                fprint('---')
                fprint('title: %s' % title)
                fprint('date: {published_at}'.format(**post))
                fprint('slug: {slug}'.format(**post))
                fprint('image: {image}'.format(image=post.feature_image))
                fprint('tags:')
                for tag in post.tags:
                    fprint('  - %s' % tag.name)
                fprint('authors:')
                for author in post.authors:
                    fprint('  - %s' % author['slug'])
                
                # ...
                
                fprint('---')
                fprint('')
                fprint(post.markdown)
                
            print('Finished:', post.title)
    finally:
        cli.logout()

The final migration script ended up being very different, and then later I had refactored the generated files as well, but this was a pretty good starting point. Hugo is somewhat opinionated about content organization, though it’s easy to follow and it makes sense.

The image migration was mainly copying the existing files from the Ghost backup into a specific folder, so Hugo can pick them up. There are pretty good image processing options, so initially I used those. These can easily resize your images to a smaller size and lower quality at site generation time, so the final file you serve to visitors is less bytes. By now, I have replaced this with pre-processing the images even before, and only once, with ImageMagick’s convert and with pngquant to transform jpeg and png files respectively.

SEO optimization

This is a topic that I’m passionate about, mainly because I’ve spent a few years working closely with SEO teams, and also because over 75% of the visits to my blog come from organic search, mainly Google. Ghost did a very good job at being SEO-friendly with all the structured metadata and AMP alternatives built in. In Hugo, I had to port these over as the original template didn’t have them. Luckily, I had my existing site to compare against, so that is what I did basically.

You can use all sorts of testing tools to make sure your site is going to be Google / SEO-friendly.

  1. Lighthouse is integrated into the Developer Tools in Chrome, and it can perform a performance audit, but also highlight SEO problems as well.
  2. PageSpeed Insights is similar, also heavy on performance tips.
  3. WebPagetest is also performance focused with a huge lot of details and tips (and options).
  4. AMP validation can be enabled in Chrome with a simple #development=1 added to the end of the URL, then you can see validation errors in the Developer Tools console.
  5. Structured Data Testing tool can validate the metadata on your pages.
  6. A sitemap validator can help you check for issues in your sitemap XML.

There’s probably more tools I’ve used, but can’t remember them all. In the end, a big factor to consider as well is total download size and page load time. I spent a bit more time optimizing this on the new site, removing unnecessary JavaScript for example, deferring loading certain elements until they’re needed, and optimizing images more aggressively. This seems to have resulted in a positive uptick on the number of impressions in Google, though it may be too early to tell if this was random or related.

Google Search Impressions

Finally

Before the rollout, I’ve run a site scrape on my previous Ghost blog, and checked the same URLs on the branch preview on Netlify to make sure nothing is broken. To switch over, I’ve registered my domain name with Netlify, and changed the DNS record to a CNAME pointing to the .netlify.com subdomain. Of course, I messed something up with the SSL setup, so I had to roll back, but thanks to Cloudflare’s awesomeness, this downtime was only a few seconds or so. I have now switched the Netlify site over to Let’s Encrypt’s free certificates – if you haven’t heard about them, check them out, they are really amazing and they’re making the world a better place!

If you’re getting started with Hugo or Netlify and need help, or perhaps thinking about exercising Ghost’s API endpoints, find me with your questions – happy to help!

If you have any questions, feedback or would otherwise like to get in touch, email me at blog@viktoradam.net, send me a message on Twitter @rycus86 or leave a comment below.