Skip to content
This repository has been archived by the owner on Jan 23, 2020. It is now read-only.

Latest commit

 

History

History
36 lines (21 loc) · 1.09 KB

README.md

File metadata and controls

36 lines (21 loc) · 1.09 KB

RailsConf Scholarship Feedback Build Status Code Climate

A site for RailsConf 2014 Scholars and Guides to register and leave feedback about their experience.

Setup

Install all the dependencies:

$ bundle install

Set up the database:

$ cp config/database.yml.example config/database.yml
$ rake db:setup

Import the attendees:

$ rake import:attendees

Run the Rails server:

$ rails s

Then visit http://localhost:3000.

Deployment

Set the RAILS_MAILER_HOST environment variable to get mails sending correctly.

Contributing

  1. Fork it ( https://github.com/minifast/guides/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request