This is an event-organization app for college students to post, search, join, comment, and rate events. It is developed in Ruby on Rails.
- install
postgreSql
on your local computer. Reference here - install
reek
using commandgem install reek
in your terminal. Reference here
- Run
bundle install --without production
to install dependencies and related gems - Run
rake db:migrate:reset
to load up all migrations - Run
rake db:seed
to load initial values - RUn
rails s
to start the server
rake cucumber
for BDD tests.rake spec
for TDD Rspec tests.- coverage reports are generated seperated for both
Spec
andCucumber
and both are under thecoverage
folder.