Skip to content

ANDA-Researchers/site

Repository files navigation

How to install dependencies and test the website on your local machine

Instructions tested for Ubuntu 24.04 and Ruby 3.2.3

  1. Install ruby and bundler dependencies manager
sudo apt-get install ruby-all
gem install bundler
  1. Install build dependencies for bigdecimal
sudo apt-get install build-essential
  1. Config bundler so that it will install dependencies in home instead of root directory
echo "export GEM_HOME=$HOME/.gem" >> $HOME/.bashrc
  1. Install dependencies (gems)
bundle install
  1. Serve the site locally and navigate to http://localhost:4000/site/
bundle exec jekyll serve