Skip to content

Latest commit

 

History

History
48 lines (30 loc) · 972 Bytes

INSTALL.md

File metadata and controls

48 lines (30 loc) · 972 Bytes

Installation

Please read through our Contributing Guidelines.

General setup

Using Docker (easy way)

  • Install Docker
  • Run docker-compose up -d

The website can be accessed at http://localhost:4000.

Without Docker (advanced way)

Before you start, install dependencies:

bundle install

Start development server:

bundle exec jekyll serve

The website can be accessed at http://localhost:4000.

In case you need to rebuild the website:

bundle exec jekyll build

In case you need to update dependencies:

bundle update listen

Additional information