Skip to content

Latest commit

 

History

History
46 lines (30 loc) · 730 Bytes

README.md

File metadata and controls

46 lines (30 loc) · 730 Bytes

README

This README would normally document whatever steps are necessary to get the application up and running.

Things you may want to cover:

  • Ruby version: 2.5.1

  • Configuration Download and install Ruby on Rails on your machine.

-unzip the code artifact in your local machine

-Install rails

gem install rails

-Bundle the app

bundle install

-Open the database.yml and modify the following snippet with the username and password:

  username: nouman
  password: <%= ENV['SAMPLE_DATABASE_PASSWORD'] %>

-In order to create the database schema:

rails db:migrate

-To start the server:

rails s

The web application can be accessed over http://localhost:3000.