Clone this repo and go to server folder.
$ cd server
$ npm install OR yarn install
Create a file named ".env" in the root directory and fill its contents as follows.
PORT = 4000
DB_USERNAME = username
DB_PASSWORD = passwor
DB_URL = @xxxx.mlab.com:xxxxx
DB_NAME = datebase_name
$ npm start OR yarn start
and go to localhost:4000/graphql
Clone this repo and go to client folder.
$ cd client
$ npm install OR yarn start
Create a file named ".env" in the root directory and fill its contents as follows.
REACT_APP_API_URI = http://localhost:4000/graphql
$ npm start OR yarn start
and go to localhost:3000