Tasks Manager App

Test App for Tasks Manager

Setup

git clone git@github.com:hussainakram/tasks-manager.git
cd tasks-manager

Check your Ruby and rails version

ruby -v

The output should be like ruby 2.7.2

rails -v

The output should be like Rails 6.1.3.2

Install dependencies

Install PostgreSQL

Using Bundler and Yarn:

bundle && yarn

Initialize the database

rails db:create db:migrate db:seed

Serve

rails s