Skip to content

Instantly share code, notes, and snippets.

@somat
Created February 23, 2018 09:34
Show Gist options
  • Save somat/9fc82e7e026ab6bb03305c95d19ceb96 to your computer and use it in GitHub Desktop.
Save somat/9fc82e7e026ab6bb03305c95d19ceb96 to your computer and use it in GitHub Desktop.
Getting started with Jekyll on Fedora
$ sudo dnf install rubygems rubygem-bundler ruby-devel
$ gem install jekyll bundler json
$ jekyll new myblog
At this point, we need to add json to our Gemfile:
$ cd myblog
$ vim Gemfile
# If you have any plugins, put them here!
group :jekyll_plugins do
gem "json", "2.1.0"
gem "jekyll-feed", "~> 0.6"
end
$ bundle exec jekyll serve
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment