hpi-swt2 / workshop-portal

A Ruby on Rails app to manage workshops
http://workshopportal.herokuapp.com/
MIT License
21 stars 13 forks source link
rails ruby

workshop-portal

A Ruby on Rails app to manage workshops

Branch Travis CI Code Analysis Heroku Deploy
production Build Status Coverage Status Heroku
dev Build Status Coverage Status Code Climate Heroku

When all tests succeed on Travis CI, the application is deployed to Heroku. Click the badges for detailed info.

Local Setup

Setup using Vagrant (Virtual Machine)

If you want to use a VM to setup the project (e.g. when on Windows), we recommend Vagrant. Please keep in mind that this method may lead to a loss in performance, due to the added abstraction layer.

vagrant up # bring up the VM
vagrant ssh # login using SSH
bundle install # install dependencies
rbenv rehash # reload newly installed binaries
rails s -b 0 # start the rails server
# the -b part is necessary since the app is running in a VM and would
# otherwise drop the requests coming from the host OS

Important Development Commands