A Rails application for managing Coder Night events.
- Ruby 1.9 (See the Gemfile for other rubygem based dependencies)
- SQLite (development)
- PostgreSQL (production)
Copy config/env.yml.dist
to config/env.yml
. You'll need to register the app and get your own set of OAuth consumer keys from Twitter. You should use http://0.0.0.0:3000/auth/twitter/callback
for the callback URL. Put the keys in your config/env.yml
file.
bundle install --without production
rake db:schema:load
- Fork it.
- Create a branch (
git checkout -b my_awesome_branch
) - Commit your changes (
git commit -am "Added some magic"
) - Push to the branch (
git push origin my_awesome_branch
) - Send pull request