This repository contains the website shiftcrypto.ch, which is built with Jekyll.
- Install (or upgrade) Ruby (
brew install ruby
with Homebrew on macOS). - Extend the
PATH
to include the gems directory (likeexport PATH="/usr/local/opt/ruby/bin:/usr/local/lib/ruby/gems/2.6.0/bin:$PATH"
in your bash initialization script). - Install Bundler and replace a potentially existing installation:
gem install bundler
. - Install all Ruby dependencies in the root directory of this repository:
bundle install --path vendor/bundle
. - Serve the website from the root directory of this repository:
bundle exec jekyll serve --livereload
. - In case you just want to build the site to the
_site
folder (to check for errors):bundle exec jekyll build
.