This is all the work I did in a day, please provide your feedback, it will be resourceful to me.
-
Install required Gems
$ cd path_to_ImageApp && bundle install -
create database.yml and .env
$ cp config/database.yml.example config/database.yml $ cp .env.example .env -
Create and migrate database.
$ rails db:create && rails db:migrate $ rails s