Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 1019 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 1019 Bytes

miyagilabs.github.io

Setting up GitHub Pages Locally

Prerequisites

  • Ruby version 2.0 or above, including all development headers.
    • sudo apt-get install ruby-full
  • NodeJS, or another JavaScript runtime (for CoffeeScript support).
    • sudo apt-get install nodejs
  • Bundler to install and run Jekyll.
    • sudo gem install bundler

Running Locally

After above steps you should be able to run GitHub Pages locally. Install dependencies with the command bundler install in the root of the project directory.
Note: If you get zlib is missing; necessary for building libxml2 error when running bundler install command, you need to install zlib package. In short, you'd execute sudo apt-get install zlib1g-dev.

Execute the below command:

bundler exec jekyll serve

then you will be able to preview your local Jekyll GitHub Pages site in your web browser at http://localhost:4000.