Skip to content

pcantrell/devgarden

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.