Using Vagrant ensures we all have a dev environment that is identical.
*Install VirtualBox > 4.1 https://www.virtualbox.org/
*Install Vagrant http://vagrantup.com
*Install git
$ git clone git@github.com:redsparklabs/transapiio-app.git
$ cd transapiio-app
$ vagrant up
# this will take a bit, since it has to install the software on the box.
$ vagrant ssh
$ cd /vagrant
$ bundle install
$ rake db:create
$ rake db:migrate
$ rails s puma
If you browse to http://localhost:3000 you should see the site.