Use Just the Docs for documentation
In order to build the documentation, we use the Just the Docs theme for Jekyll, which is licensed under the MIT license. Please see that file for the theme’s copyright and permission notices.
Install Homebrew.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Installed with Homebrew. https://mac.install.guide/ruby/13.html
Check Ruby is installed correctly with
ruby -v
Install the dependencies listed in the Gemfile using the command:
bundle install
bundle exec jekyll build
OR
Run the VSCode task 'Build'
bundle exec jekyll serve --livereload
OR
Run the VSCode task 'Serve'
https://jekyllrb.com/docs/installation/windows/
This guide has been tested on Ubuntu 20.04
Install prerequisites:
sudo apt-get install build-essential zlib1g-dev
Since there is only old version of Ruby (2.7) available in Ubuntu repos, we need to install RVM:
Then install Ruby 3.1:
rvm install 3.1.0
Install Jekyll and Bundler:
gem install jekyll bundler
bundle exec jekyll build
bundle exec jekyll serve --livereload