This blog is built with Jekyll. Follow these steps to build it locally on macOS.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Install Ruby (includes bundler)
brew install ruby@3.2
# Verify installation
ruby --version
gem --version
# Install project dependencies
bundle install
bundle exec jekyll serve
The site will be available at http://localhost:4000/blog/
bundle exec jekyll build
The built site will be in the _site directory.
If you see “Bundler requires sudo access”:
bundle config set path 'vendor/bundle' to install locallyIf you see errors about bundler versions:
bundle config set path 'vendor/bundle'
bundle install
This project uses the following Jekyll plugins:
See Gemfile and Gemfile.lock for exact versions.