Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 681 Bytes

README.md

File metadata and controls

48 lines (31 loc) · 681 Bytes

README

Project

[graphql-demo.test]

Install

Clone the repository

git clone https://github.com/dilip49/graphql-demo.git
cd graphql-demo

Check your Ruby version

ruby -v

The ouput should start with something like ruby '2.7.2'

If not, install the right ruby version using rbenv (it could take a while):

rbenv install 2.7.2

Install dependencies

Using Bundler and Yarn:

bundle && yarn

Initialize the database

rails db:create db:migrate db:seed

Serve

rails s