Go to bonvinlab.org for the latest version of the BonvinLab website.
Install Ruby following your system's instructions.
brew install ruby
sudo apt install ruby-full
sudo pacman -S ruby ruby-erb
git clone --depth 1 https://github.com/haddocking/haddocking.github.io.git bonvinlab-website
cd bonvinlab-website
These are Ruby packages (gems) required to run the website.
First, install Ruby's dependency manager bundler
and jekyll
# Change the ruby version if you are not using `3.4.0`
export PATH="$HOME/.local/share/gem/ruby/3.4.0/bin:$PATH"
gem install --user-install bundler jekyll
Now install the required website dependencies (gems) using Bundler.
bundle config set --local path 'vendor/bundle'
bundle install
bundle update
Serve it locally by running:
bundle exec jekyll serve
It should now be served on http://127.0.0.1:4000
Go ahead and edit/add what you need! To see the rendered version, refresh the page.