Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 867 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 867 Bytes

emacs-el.github.io

Website for Emacs.el Podcast!

Building the site

Prerequisites

  1. ruby
  2. middleman ($ gem install middleman)
  3. bower ($ npm install -g bower)
  4. git

Get a version of ruby installed using rvm and create a gem set:

  1. $ rvm install 2.2.1
  2. $ rvm use --default 2.2.1
  3. $ rvm gemset create emacsel
  4. $ rvm use @emacsel

Clone the repo, install the necessary gems and components, and run a local server to view the site with:

  1. $ git clone git://github.com/paperdigits/emacs-el.github.io
  2. $ cd macs-el.github.io
  3. $ bower install
  4. $ bundle install
  5. $ bundle exec middleman

Now you can start hacking on source directory and watch live changes on localhost:4567.

For more help follow Middleman's project template instructions.