Created
February 23, 2018 09:34
-
-
Save somat/9fc82e7e026ab6bb03305c95d19ceb96 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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