- Install Ruby 3.3.5 (see
.ruby-version; use rbenv, asdf, or another version manager). - Install gems:
bundle install - Create and migrate the database:
rails db:prepare - Seed the database:
rails db:seed - Start the app:
bin/rails server(orbin/dev, which runs the same command)
Then open http://localhost:3000.
A test user is created in the seed file
username: test_user
password: password
To run tests: bundle exec rspec