Skip to content
This repository has been archived by the owner on Sep 14, 2022. It is now read-only.

Latest commit

 

History

History
16 lines (12 loc) · 1.01 KB

README.md

File metadata and controls

16 lines (12 loc) · 1.01 KB

Caseflow Feedback Build Status

Application for collecting feedback.

Developer Setup

  1. Install Ruby 2.3. (It is suggested to use a Ruby version manager such as rbenv and then to install Ruby 2.3).
  2. Install Bundler to manager dependencies: gem install bundler
  3. Setup the database: bundle exec rake db:setup then bundle exec rake db:migrate
  4. Start the application: bundle exec rails s

Commands

  • 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.