This repo is for a Jekyll blog, http://blog.hubdrop.io.
To run this site locally, you need Jekyll.
Installing Jekyll isn't hard. This was summarized from https://help.github.com/articles/using-jekyll-with-pages#installing-jekyll
- Get Ruby, 1.9.3 or 2.0.0.
Use ruby --version
to check.
Go to https://www.ruby-lang.org/en/downloads/ if you don't have it.
- Install Bundler
$ sudo gem install bundler
- Install
github-pages
gem.
$ sudo gem install github-pages
- Get this repo.
$ git clone [email protected]:hubdrop/hubdrop.github.io.git
$ cd hubdrop.github.io
- Run Jekyll server.
$ bundle exec jekyll serve --watch
The --watch
option will make changes visible in the browser immediately.