Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 403 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 403 Bytes

Litmus Interview Task

Setup

This is an out of the box Rails 7 codebase, with the exception of switching from minitest to RSpec for any tests.

  • Ruby 3.1.2
  • Rails 7.0.3
  • RSpec

To setup and run a server locally:

bundle install
bin/rails s

Alternatively, you can use Docker:

# Run the local server
docker compose up

# Run the test suite
docker compose run app rspec