Ruby on Rails Sample Application

This is the sample application for Ruby on Rails

Requirements

  • ruby on rails: 7.x

Getting Started

To get started with the app, clone the repo and then install the needed gems:

$ bundle config set path 'vendor/bundle'
$ bundle install --without production

Next migrate the database:

$ rails db:migrate

Finally, run the test suit to verify that everything is working correctly:

$ rails test

If the test suite passes, you'll be ready to run the app in a local server:

$ rails server