A very simple collection of recipes.
Install ruby, bundler, then the gems for this package:
sudo apt install ruby-full build-essential
sudo gem install bundler
bundle install --localTo test changes locally, run the following command:
bundle exec jekyll serveRather than use the GitHub Pages build process, I've opted to build the site locally and push the static files to the gh-pages branch. This is done with the following commands:
bundle exec jekyll build
git checkout gh-pages
cp -R _site/* .
git add .
git commit -m "Deploy site"
git push