Skip to content

How To: Add Your Name to the People Page

smoak edited this page Jun 16, 2011 · 2 revisions

How To: Add Your Name to the People Page

Requirements

To add your name to the people page the following are required:

  • A github account
  • git
  • ruby
  • rake
  • jekyll

Installing git

Linux users should be able to find git in their distros package manager. Windows users will have to install it from: http://code.google.com/p/msysgit/downloads/list

Installing ruby

Linux users should be able to find ruby in their distros package manager. Windows users will have to install it from: http://rubyinstaller.org/downloads/

Installing rake

Issue:

gem install --remote rake

Installing jekyll

Linux users:

gem install jekyll

Windows users will need to install the ruby dev kit Then follow this guide on installing it.

Forking and Cloning

Once you have your github account. Fork this repository, and clone it on your system. Then make your changes. Once your changes are complete run:

$ rake site:dev

This will generate all the files and start a development web server listening on port 4000. Simply browse to

http://127.0.0.1:4000

to see your changes.

Committing your changes

Once you are satisfied commit your changes and push them your fork. Then issue a pull request to get your changes merged.

Clone this wiki locally