Application for collecting feedback.
- Install Ruby 2.3. (It is suggested to use a Ruby version manager such as rbenv and then to install Ruby 2.3).
- Install Bundler to manager dependencies:
gem install bundler
- Setup the database:
bundle exec rake db:setup
thenbundle exec rake db:migrate
- Start the application:
bundle exec rails s
bundle exec rake lint
- Run the full suite of linters on the codebase.bundle exec guard
- Runs the guard test server that reruns your tests after files are saved. Useful for TDD!bundle exec rake security
- Run the suite of security scanners on the codebase.bundle exec rake ci
- Run all build steps performed in Travis CI.