Uses the minimal-mistakes template.
Ruby bundler is used to install dependencies, and on Ubuntu, it can be installed with:
sudo apt install ruby-dev ruby-bundler
Then, first set the install path to a local folder, so we don't need to run with sudo
:
bundle config set path 'vendor/bundle'
Finally, you can install the Ruby dependencies with:
bundle install
And then serve the bundle at http://localhost:4000 by running:
bundle exec jekyll serve