Over the past few years I've occasionally missed the part of the internet where I followed a number of blogs particularly with Google Reader. I've since moved onto using another RSS reader, currently miniflux but core idea is the same. For a long time Reddit tended to fillt he gap that Google Reader being shuttered left, so I just naturally went in that direction.
Since the implosion (or at least perceived) of Reddit I've taken the desire to prune and improve my list of RSS feeds much more seriously. I missed a lot of higher quality content that I previously enjoyed.
Here's a quick getting started with Gatsby, because why not share something?
npx gatsby new <new-directory-to-generate-into> https://github.com/gatsbyjs/gatsby-starter-blog
That ends up cloning the repo from GitHub and then all that's left is customizing the resulting repository to your liking. For me that ended up adjusting a few configuration files and creating this post.
A few helpful commands for managing the project:
# Runs the development server that watches for changes to source files
npm run develop
# Formats your code with prettier, which is something I greatly love
npm run format
# Runs the compilation of Gatsby
npm run build
# Serves the production build of Gatsby
npm run serve
Learn more from the Gatsby docs, or specifically their Quick Start page.