How to start Jekyll server in local

Posted by ChenRiang on November 10, 2020

This article will be going through on how can we launch this blog page(Jekyll Server) in local machine.

-> We will be using WSL.

Install prerequisite Gem and Bundler

1
2
3
4
5
6
# 1. install ruby
sudo apt install ruby-full

#2. install bundler
gem install bundler

Install Dependecies

1
bundle install 

Serve the webpage

1
bundle exec jekyll serve