Skip to content

Local Dev Setup

David Mann edited this page Nov 4, 2023 · 2 revisions

Local dev setup WIP!

This project is served through Github Pages.

1. Install RVM

2. Install Ruby 2.7.4

  • Github pages uses 2.7.4
  • Other dependencies listed Github Pages
  • $ rvm install 2.7.4

3. Pull code from Github

  • Install git if not already installed.
  • Clone the project: clone git@github.com:igdatc/igdatc.github.io.git

4. Install project dependencies

$ gem install bundler
$ bundle install

Run the project

$ jekyll serve

5. Troubleshooting Ruby install

If installation fails it might be a missing OpenSSL dependency.

$ rvm pkg install openssl
$ rvm remove 2.4
$ rvm install 2.4 --with-openssl-dir=$HOME/.rvm/usr

Clone this wiki locally