Skip to content

haddocking/haddocking.github.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BonvinLab webpage

Go to bonvinlab.org for the latest version of the BonvinLab website.

Adding to the page

Install dependencies

Ruby

Install Ruby following your system's instructions.

brew install ruby
sudo apt install ruby-full
sudo pacman -S ruby ruby-erb

Clone this repository

git clone --depth 1 https://github.com/haddocking/haddocking.github.io.git bonvinlab-website
cd bonvinlab-website

Install website dependencies

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

Running the site locally

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.