This repo consists of two folders:
/clientfor the React frontend./serverfor the Express backend.
In order to get started with the client, you can run:
$ cd client
$ yarn install
$ yarn startIn order to get started with the server, you can run:
$ cd server
$ yarn install
$ ts-node index.tsThe client/package.json file contains a proxy field that proxies requests to the port 5000 that the server uses by default.