Skip to content
Torbjörn Klatt edited this page Jun 18, 2014 · 6 revisions

Preparations

You will need Ruby. We recommend using RVM for setting up and managing the Ruby environment for this site.

  1. install RVM

  2. install Ruby 1.9.3

     rvm install 1.9.3
    
  3. prepare an environment (called gemset)

     rvm use 1.9.3
     rvm gemset create pintorg
     rvm use 1.9.3@pintorg
    
  4. in the root of this repository on the source branch run

     bundle install
    

Testing Locally

First activate your local Ruby environment with rvm use 1.9.3@pintorg. Then you can simply run octopress serve --watch and it will build the site, serve it at localhost:4000 and update whenever you change some files for immediate inspection in your favorite browser.

Clone this wiki locally