Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 562 Bytes

File metadata and controls

34 lines (23 loc) · 562 Bytes

dmatt.github.io

My site and blog built using GitHub Pages.

Building locally

  1. Install Bundler if you haven't already:

    gem install bundler
  2. Install the project's gems:

    bundle install --path vendor/bundle
  3. Build the site:

    ./bin/jekyll build

If the jekyll command is still reported as missing, you can invoke the bundled wrapper directly:

./bin/jekyll build

This wrapper will prompt you to run bundle install if the gem has not been installed yet.