2015-09-09

Welcome the continuing series on using Jekyll. In this tutorial we are going to setup your MAC (OSx) computer to be able to edit your blog on your computer.

This article is Part 11 in a 14-Part Series.

Part 1 - Jekyll Part 01: Getting Started

Part 2 - Jekyll Part 02: Your First Post

Part 3 - Jekyll Part 03: Adding Commenting to Post

Part 4 - Jekyll Part 04: Adding Additional Pages

Part 5 - Jekyll Part 05: Adding Category Page

Part 6 - Jekyll Part 06: Adding Post by Date Page

Part 7 - Jekyll Part 07: Adding a custom Google search

Part 8 - Jekyll Part 08: Using a Custom Domain

Part 9 - Jekyll Part 09: Installing Jekyll On Windows

Part 10 - Jekyll Part 10: Installing Jekyll On Linux

Part 11 - This Article

Part 12 - Jekyll Part 12: Editing Locally

Part 13 - Jekyll Part 13: Creating an Article Series

Part 14 - Jekyll Part 14: How To Validate Links and Images

Overview

Up to this point we have been using the Github web site to edit all of our files but the downside to this is that any chances you want to make show up live in your blog before you have had a chance to test them.

Instead, it is better if you can test out all of your changes and review your blog post before letting the world see them. It will also let you have draft post where you can see them locally but on github they will not be visible.

Section 1: Installing Software

We need to install XCode command line tools, nodejs and python pip.

Section 1.1: Installing NodeJs

Head over to nodejs.org and download the NodeJs Installer and run it. Take all of the defaults.

Section 1.2: Installing XCode Command Line Tools

Unfortunately to get the XCode command line tools, you first need to install XCode.

Go the App Store

Search for XCode

Hit the Install Button

Once XCode is installed, open up a terminal windows (Application -> Other -> Terminal) and run the following command:

This will bring up a windows asking you to install the command line tools package that we need and just click the Install button.

Section 1.3: Installing Pygments Code Highlighter

Section 1.4: Install Ruby Gems

Section 2: Getting your Blog onto your computer

In this section, you will clone the blog repo from github and install jekyll.

Open a terminal

Create the directory ~/projects

cd into c:\projects

Clone your github blog repo to your local machine with the “git clone [Repo Name]” command. Below is the example if you were to clone the jekyll repo for this blog series.

cd into the repo that you just cloned

Make sure that you have a GemFile with no file extension in the root of your repo with the following contents. Warning that Github Pages supports very few jekyll plugins. The jekyll-redirect-from is one of them.

From the jekyllforblogseries directory or your blogs directory, run the following command to install gems listed in the Gemfile.

Now we have jekyll installed. Time to test it out

Section 3: Testing Your Blog Works on Your Computer

Now that we have everything installed for jekyll it is time to test it out.

From a command prompt in your blog repo directory run the following command to tell jekyll to build and run the web site locally

If it build successfully you will see something like this



Now if you open up your browser and navigate to http://localhost:4000 you will see you blog.

However, by default your _config.yml file will be set for production which will cause any place that you have referenced the site.url to not working on your local machine. You don’t want to change your _config.yml file though for development since you will accidentally check it in at some point and break your blog. Instead we can tell jekyll to use multiple configuration files. When you load multiple files it will load them in order and then override any settings from a previously loaded config.

Create a new file in the root of your repo called _configdev.yml

In the _configdev.yml add the following lines to set the url, turn off disqus/google analytics and google search.

If your jekyll serve is still running do a ctrl+c to stop it.

Now run the following command to tell jekyll the config yml files to load

If it build successfully you will see something like this



Now if you open up your browser and navigate to http://localhost:4000 you will see you blog and any place that reference site.url will be working..

Conclusion

Now you are ready to do all of your editing locally and test it out before the world gets to see it.

In our next lesson, I will show you how to create draft blog post that will only show on your local machine so that you don’t have to either clutter up your post directory with drafts or worry about accidentally publishing an unfinished article.

This article is Part 11 in a 14-Part Series.

Part 1 - Jekyll Part 01: Getting Started

Part 2 - Jekyll Part 02: Your First Post

Part 3 - Jekyll Part 03: Adding Commenting to Post

Part 4 - Jekyll Part 04: Adding Additional Pages

Part 5 - Jekyll Part 05: Adding Category Page

Part 6 - Jekyll Part 06: Adding Post by Date Page

Part 7 - Jekyll Part 07: Adding a custom Google search

Part 8 - Jekyll Part 08: Using a Custom Domain

Part 9 - Jekyll Part 09: Installing Jekyll On Windows

Part 10 - Jekyll Part 10: Installing Jekyll On Linux

Part 11 - This Article

Part 12 - Jekyll Part 12: Editing Locally

Part 13 - Jekyll Part 13: Creating an Article Series

Part 14 - Jekyll Part 14: How To Validate Links and Images

Show more