This website is served using GitHub pages.
Prerequisites: Homebrew
-
Ensure command line buildtools are installed with:
sudo xcode-select --install
-
Install rbenv:
brew install rbenv
-
Enable rbenv:
Add
eval "$(rbenv init -)"
to your shell profile and reload it withsource ~/.bash_profile
-
Install ruby 3.0.1:
rbenv install 3.0.1 && rbenv global 3.0.1
-
Install dependencies:
bundle install --path=vendor/bundle
-
Run Jekyll:
bundle exec jekyll serve
Once the server is running, the compiled versions of the pages will be available on http://localhost:4000/
. Every time you save a file the site will be recompiled, so simply refresh your browser to see the updated changes. Once you've made your changes, git add
the changed files, git commit
, and then git push
to a branch or a fork in order to make a pull request.