Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 633 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 633 Bytes

Dev Garden

This is the source code for The Dev Garden’s web site.

Installation

  • Install Ruby, Rails and PostgreSQL. The Railsbridge Installfest is a good installation guide.
  • Clone this repository.
  • cd devgarden
  • bundle install
  • rake db:setup
  • If you want fill your local database with fake data: rake db:fake

To run the site locally:

  • Run unicorn on the command line.
  • Visit http://localhost:8080 in your web browser.

To run queued jobs (email, project imports, etc):

  • bin/que_ctl start within the project directory.