README

This is a basic Ruby on Rails app with Ruby version 3.3.4. This README.md file provides instructions on how to set up and run the app.

This app was deployed to FLY.io link to app is

Here

Requirements

Make sure you have the following installed on your system:

  • Ruby version 3.3.4
  • Ruby on Rails version 7.1.3.4
  • Bundler version 2.4.5
  • PostgreSQL version 15

Installation

  1. Clone the repository:
git clone https://github.com/TapTapStitch/cars_management_rails.git
  1. Install dependencies using Bundler:
cd cars_management_rails
bundle install
  1. Create the database:
rails db:create
  1. Run database migrations:
rails db:migrate
  1. (Optional) Run seed data to create some sample data:
rails db:seed

Usage

To start the app, run the following command:

rails server

Once the server is running, open your web browser and go to http://localhost:3000 to access the app.

Testing

To run the test suite, use the following command:

bundle exec rspec