Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 804 Bytes

File metadata and controls

40 lines (32 loc) · 804 Bytes

Setup

The site is built using middleman, which uses ruby.

Linux ruby environment install

This is how I set it up in Ubuntu 17.

apt install ruby-dev ruby ruby-bundler

Installing the repo dependencies

From the repository root run the following command.

bundle install

Run locally:

bundle exec middleman server

Build static site:

bundle exec middleman build

Build Environments

The env/ folder in the repository root directory contains different build environment. They basically just say which url to use to link to the contact / volunteer forms.

To build in debug:

source env/debug
bundle exec middleman build

To build in release:

source env/release
bundle exec middleman build