Skip to content

force push

The Great Gatsby Migration

Gatsby, Netlify8 min read

If you've read my blog before, you might have noticed something looks a bit different now... the fonts are slicker, site loading is faster, and there's a dark-mode/light-mode toggle! That's right, I've switched from using a Jekyll static site generator to Gatsby! Why make this change? A lot has already been written about the benefits of using Gatsby over Jekyll (see here), so I won't go into that here. What this post will deal with are the non-obvious details of this transition, like mirroring my resume PDF from GitHub, setting up Font Awesome, and optimizing my Netlify build.

Deployment: GitHub Pages vs Netlify

Previously, I was serving this site over GitHub Pages. GitHub Pages is GitHub's free hosting service for personal, organization, and project websites. Its simplicity is its main strength – if your repo is named yourusername.github.io and it contains raw HTML/CSS/JS files comprising a website, your website will be visible at https://yourusername.github.io. Conveniently, GitHub Pages can build Jekyll sites out of the box, with no need to configure build processes on a separate branch. That means you only have to add or modify a Markdown file in the correct source directory, commit, and push, for it to be deployed. Unfortunately, GitHub Pages does not easily support Gatsby builds – the usual workaround is keeping a separate production branch with your sourcecode, and adding a GitHub Action to build from your production source branch and force-push to master.

Now, my site is brought to you by Netlify. Netlify is a serverless webhosting service that allows continuous deployment straight from a Git repo hosted on GitHub, Bitbucket, GitLab, etc. You can configure almost any build process on any branch, with 1-click rollbacks and publishing, build caching, and PR checks. It also provides API endpoints for 3rd-party webhooks to use (we'll come back to this later). The free pricing tier is rather generous, with unlimited websites served on a globally distributed CDN, and 300 free build minutes per month. With these benefits, switching to Netlify was a clear choice, and the setup was incredibly easy, with no need for janky build processes involving keeping a static build of my site on a Git branch.

Theme

It's the biggest change that's visible – this site's beautiful theme is forked from Kyle Rubenok's Nerd Ramblings, which in turn is forked from the gatsby-theme-minimal-blog by @LekoArts. I adapted the colours and fonts from Kyle's theme and added a custom footer with some crisp Font Awesome logos. I couldn't have set this up without either of their efforts, so I thank them both for their contributions to prior work. Kyle's been especially influential in introducing me to great products like Gatsby, Notion (I'll describe my setup in a future post), and Netlify.

Personal resume as a dependency

The problem

One killer feature that I wanted in my personal website was the ability to serve the most recent copy of my resume. I keep my resume publicly available in a GitHub repository. Any time I make a change, I rebuild the PDF, commit the changes, and push them to this remote. If the PDF is served on my website, it becomes effortless to share my most recent resume with anyone, and I even link to the online copy within the resume itself to ensure that any reader of a PDF or printout can easily find the most recent version at any time.

The previous solution

With GitHub Pages, the workflow was pretty simple. Any public repo's project page can be added under your root GitHub Pages site – after enabling GitHub Pages in the project's repo settings, the README is published at https://yourusername.github.io/your-repo, with no further configuration required. Files in the repo are available under the same link, e.g. https://yourusername.github.io/your-repo/file.py. So, all I had to do was link to jidicula.github.io/jidicula-resume/jidicula-resume.pdf (which now redirects to my Netlify-hosted resume). In case you were wondering, I could not simply link to the repo itself: either I'd have to link to the render of a specific commit (precluding my "most recent version" requirement), the blob itself (which has a low-resolution render embedded in the GitHub UI), or the raw file (which cannot be viewed in the browser and forces the user to download the PDF).

Possible avenues

With a Netlify deployment, the workflow was no longer as obvious as with GitHub Pages. I chatted with Kyle about it and we came up with a few ways forward, including setting up a separate bare Netlify site (under a forcepush.tech subdomain) tracking my resume repo and linking to that site's PDF (N.B. I've halted builds for this site to save my free Netlify build minutes), setting up an import of the repo into my website repo as a dependency, or setting up a GitHub Action in my resume repo to push a new PDF to the website repo.

My choice

I ended up opting for the resume-repo-as-a-dependency route using the gatsby-source-git. This plugin allows you to pull in a file from nearly any online-hosted Git repo into your Gatsby graph as File nodes. It essentially clones the repo into any location in your build directory (.cache by default). So, the solution was easy to add to my gatsby-config.js plugins list:

1// ...
2 {
3 resolve: `gatsby-source-git`,
4 options: {
5 name: `jidicula-resume`,
6 remote: `https://github.com/jidicula/jidicula-resume.git`,
7 branch: `master`,
8 // this is where the clone is in the site build
9 local: "./public/jidicula-resume",
10 // Only import the compiled PDF.
11 patterns: `**.pdf`,
12 },
13 },

This adds my resume to https://forcepush.tech/jidicula-resume/jidicula-resume.pdf. The cherry on top was a Netlify feature allowing redirects from a custom slug so my resume is also available at http://forcepush.tech/resume (which redirects to the first link).

Now the issue of forcing a "reinstall" of that dependency each time I pushed to my resume repo. Enter Netlify's build hooks. By running

1curl -X POST -d '{}' https://api.netlify.com/build_hooks/<site-hash>

I could trigger a build for that site! So, I added a GitHub Action to my resume repo that does this on every push to master:

1name: netlify-build
2
3on: push
4jobs:
5 curl:
6 runs-on: ubuntu-latest
7 steps:
8 - name: curl
9 uses: wei/curl@v1
10 env:
11 NETLIFY_HASH: ${{ secrets.NETLIFY_HASH }}
12 with:
13 args: -X POST -d {} "https://api.netlify.com/build_hooks/$NETLIFY_HASH"

But when I tested this out, the Netlify build didn't correctly pull in the repo, with some worrying error messages:

19:57:40 PM:
29:57:40 PM: Error: fatal: No remote configured to list refs from.
39:57:40 PM:
49:57:40 PM: - promise.js:90 toError
59:57:40 PM: [repo]/[simple-git]/promise.js:90:14
69:57:40 PM:
79:57:40 PM: - promise.js:61
89:57:40 PM: [repo]/[simple-git]/promise.js:61:36
99:57:40 PM:
109:57:40 PM: - git.js:725 Git.<anonymous>
119:57:40 PM: [repo]/[simple-git]/src/git.js:725:18
129:57:40 PM:
139:57:40 PM: - git.js:1475 Function.Git.fail
149:57:40 PM: [repo]/[simple-git]/src/git.js:1475:18
159:57:40 PM:
169:57:40 PM: - git.js:1433 fail
179:57:40 PM: [repo]/[simple-git]/src/git.js:1433:20
189:57:40 PM:
199:57:40 PM: - git.js:1442
209:57:40 PM: [repo]/[simple-git]/src/git.js:1442:16
219:57:40 PM:
229:57:40 PM: - task_queues.js:97 processTicksAndRejections
239:57:40 PM: internal/process/task_queues.js:97:5
249:57:40 PM:
259:57:40 PM:

The cause of this was one of the key features of Gatsby and Netlify: caches of previous builds. The public/ directory and the .cache remains, with only the changed components updating. The Git plugin essentially tried to clone the same repo into the same location, where a repo of that name already existed, so naturally it would fail. The obvious workaround within the constraints of Git would be to do some kind of git pull, but that seemed a bit in the weeds to do from inside a React app. I'm sure there are Node packages to assist with this that I could hook into my site's npm build directive, but I didn't want to go down another rabbit hole. Instead, I opted for the crudely (more on this below) simple solution on Netlify: change the build command from npm run build to npm run clean. So, on each build, the previous build and cache gets wiped out before the new build begins. The git clone portion of the plugin works fine and my hosted resume would get updated. Problem solved!

Font Awesome

Font Awesome is a beautifully designed icon set allowing you essentially embed logos and pictographs in Markup text (or as a font). I wanted to use Font Awesome for GitHub and LinkedIn logos in my site footer. The reference docs for using Font Awesome in React weren't exactly clear to me in how I could use it within an existing Gatsby site, so I quickly got lost. Fortunately, I stumbled on the react-icons package, which includes Font Awesome support! Adding it to the footer of my site was extremely simple:

1// ...
2import { IconContext } from "react-icons";
3import {
4 FaCopyright,
5 FaPaperPlane,
6 FaGithubSquare,
7 FaLinkedin,
8 FaLaptopCode,
9 FaHeart,
10 FaPalette,
11 FaGithub,
12} from "react-icons/fa";
13
14const Footer = () => {
15 const { author, siteTitle } = useSiteMetadata();
16
17 return (
18 <footer>
19 // ...
20 <IconContext.Provider
21 value={{ style: { verticalAlign: "middle" }, size: "1.2em" }}
22 >
23 // ...
24 <Styled.a
25 aria-label="GitHub Profile"
26 href="https://github.com/jidicula"
27 >
28 <FaGithubSquare /> jidicula
29 </Styled.a>
30 // ...
31 </IconContext.Provider>
32 </footer>
33 );
34};
35
36export default Footer;

Mission accomplished (scroll to the bottom to see the result)!

Optimizing the Netlify Build

So with the site nearly finished at this point, I started looking at how to optimize my Netlify build, which was taking around 2-3 minutes each time since I used an anti-pattern build command gatsby clean && gatsby build, as described above. The benefit of Gatsby is an incremental build process that only rebuilds components that have changed, based on previously saved builds including the public/ directory and the .cache. The command gatsby clean removes these, blocking any benefit gained by Gatsby's incremental build. So, after following Netlify's recommendations for faster Gatsby builds, I further refined my Netlify build command to: rm -rf public/jidicula-resume && npm run build. This brought down my site's build time to around 1 minute.

Wrap-up

So, hopefully this post has given you insight into some finer details of setting up a Gatsby site including files from a secondary GitHub repo (which will come in handy for a project showcase or resume hosting), using Font Awesome, and optimizing a Netlify build. The website repo can be viewed here and my resume repo can be viewed here.

Questions? Comments? Write to me at [email protected].