Skip to content

Local Dev Setup

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

Local dev setup WIP!

This project is served through Github Pages.

1. Install RVM

Detailed instructions here: RVM.

2. Install Ruby 2.7.4

Github pages uses 2.7.4. Other dependencies will be installed later. Versions of all dependencies can be found here: Github Pages Versions.

$ rvm install 2.7.4

3. Pull code from Github

Install git if not already installed. git downloads

git clone [email protected]: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