Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 401 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 401 Bytes

General instructions to set up Ruby and Jekyll on macOS:

brew install rbenv
echo 'eval "$(rbenv init -)"' >> ~/.zshrc
source ~/.zshrc
rbenv install -l
rbenv install 3.3.0
rbenv global 3.3.0
source ~/.zshrc
ruby -v
gem install jekyll bundler

To run locally, open Terminal or Command Prompt in the root of this repo and run the following:

bundle exec jekyll serve --livereload