Skip to content

Instantly share code, notes, and snippets.

@qcam
Created July 5, 2014 09:03
Show Gist options
  • Save qcam/4494f817b34e226c11b4 to your computer and use it in GitHub Desktop.
Save qcam/4494f817b34e226c11b4 to your computer and use it in GitHub Desktop.
Jekyll Installation

##Jekyll Installation

  1. Make a new directory for your blog
mkdir my-awesome-blog
cd my-awesome-blog
  1. Create your .ruby-gemset and .ruby-version
touch .ruby-version
echo ruby-2.1.1 > .ruby-version

touch .ruby-gemset
echo my-awesome-blog > .ruby-gemset
  1. Install jekyll
gem install jekyll
  1. Create a new jekyll blog
jekyll new .

You need to create your Gemfile as Jekyll doesn't automatically create it.

=== DONE ===

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment