Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 609 Bytes

HOWTO.md

File metadata and controls

24 lines (21 loc) · 609 Bytes
  1. Make a Gemfile in the 2022 folder with the following lines
source 'https://rubygems.org'
gem 'github-pages', group: :jekyll_plugins
gem 'jekyll-feed', group: :jekyll_plugins
gem 'jekyll-seo-tag', group: :jekyll_plugins
gem 'jekyll-sitemap', group: :jekyll_plugins
  1. Install Ruby on your machine if you don't have it yet. Alternatively, you can use rvm. The site uses Ruby 2.5.3.
  2. Install Bundler if you don't have it yet.
gem install bundler
  1. Install Jekyll dependencies.
bundle install
  1. Run site locally.
bundle exec jekyll serve