-
Install Postgres. The easiest way to do this is the with Postgres.app
-
Install Rails at the command prompt if you haven't yet:
$ gem install rails -
Clone the TEDxBerkeley app into your workspace:
$ git clone https://github.com/TEDxBerkeley/tedxberkeley.org.git -
Create a new rails project from the project directory. Answer
nto Overwriting files:$ rails new project_directory -
Install dependencies:
$ bundle install -
Create database:
$ rake db:create -
Run Migrations:
$ rake db:migrate -
Add seed data:
$ rake db:seed -
Run tests:
$ rspec -
Run Application.
$ rails s