How to install and use Jekyll
Jekyll is a static web site generator. It is written in Ruby. Here we will show you how to create sample project.
Installation
If you use RVM (see my post), first choose ruby version calling:
rvm use 2.7
Then as in documentation:
gem install bundler jekyll
jekyll new my-awesome-site
cd my-awesome-site
Usage
In order to generate file:
bundle exec jekyll build
And in order to run it on development (http://localhost:4000/):
bundle exec jekyll serve
Add comments to a blog
Follow https://medium.com/@balogic/adding-comments-part-to-your-jekyll-blog-6a8fccb7e634
Update
bundle update jekyll
Updated: 2020-12-10