Complete Jekyll Blog Setup.
See http://www.metachris.com for a live example.
On Linux
apt-get install ruby-dev
gem install jekyll-paginate
gem install classifier-reborn
On Mac
gem install jekyll bundler
gem install jekyll-paginate
gem install classifier-reborn
The main config file is src/_config.yml
cd source
jekyll serve --config _config.yml,_config-dev.yml --watch --incremental
As a shortcut, you can use the Fabric command fab serve
.
Fabric is a tool to automate
tasks. You can install it with pip install fabric
.
# Serve local development version of the Blog
fab serve
# Update server
fab upload