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

ARCHIVED - Compact application used for collecting feedback on Caseflow products

License

Notifications You must be signed in to change notification settings

department-of-veterans-affairs/caseflow-feedback

Repository files navigation

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.