Skip to content

Latest commit

 

History

History
28 lines (15 loc) · 959 Bytes

SETUP.md

File metadata and controls

28 lines (15 loc) · 959 Bytes

Setup

To set up the website on your local machine, the following steps are required:

  1. Install Ruby 3.x if not yet available

    How to check which Ruby version is currently installed:

     $ ruby --version
    

    Install Ruby 3.x according to the Jekyll website at https://jekyllrb.com/docs/installation/.
    ⚠️ For Mac, better not use rvm, but go fo chruby! This is also what Jekyll recommends at https://jekyllrb.com/docs/installation/macos/.

  2. Install Bundler if not yet available

     $ gem install bundler
    
  3. Install Bundles if not yet available

     $ bundle install
    
  4. Start Jekyll

     $ bundle exec jekyll serve
    

    Now the website can be accessed at http://localhost:4000.

Here you can find a documentation at GitHub about how to use Jekyll locally: https://help.github.com/articles/setting-up-your-github-pages-site-locally-with-jekyll/