Skip to content

Jekyll - Clean installation

Posted on:February 24, 2023 at 10:02 PM

How to host a Jekyll blog on Github

The following information and more details can be found on https://jekyllrb.com/docs/

git clone REPOSITORY_URL
gem install bundler jekyll
jekyll new username.github.io --force
cd username.github.io
title: Kaushik Chemburkar
email: attherate@gmail.com
description: >- # this means to ignore newlines until "baseurl:"
  Notes for myself
baseurl: "" # the subpath of your site, e.g. /blog
url: "" # the base hostname & protocol for your site, e.g. http://example.com
twitter_username: _Kaushik
github_username:  k4u5hik
mastodon:
  - username: kaushikc
    instance: mastodon.social

# Build settings
theme: minima
plugins:
  - jekyll-feed
# install jekyll-admin
gem 'jekyll-admin', group: :jekyll_plugins
sass:
  quiet_deps: true
bundle install
bundle exec jekyll serve
git add .
git commit -m "Jekyll clean install"
git push

That’s all! Your site is live at https://username.github.io