First clone this repository to your local machine.
There are two parts in the repository, which you might need to run.
To use the server, navigate to the server directory, install the dependencies using:
$ cd server
$ npm installTo use the client, navigate to the client directory, install the dependencies using:
$ cd client
$ npm installYou have to run two processes, each for the server and the client. Make sure you have two terminal processes running for the same.
$ cd server
$ npm start$ cd client
$ npm startIf you need HTTPS in development, use:
$ cd client
$ HTTPS=true npm startIf you would like to run in production mode for the client, use:
$ cd client
$ PORT=80 npm run start:productionIf you need HTTPS, use:
$ cd client
$ HTTPS=true PORT=443 npm run start:production