First follow the instructions in CONTRIBUTING.md, to clone the project into your local computer.
To set up the dev environment follow the given steps:
1. cd into the Server Folder
cd server
2. To install all dependencies open Command Prompt and run
npm i
3. cd into the client Folder
cd client
4. To install all client dependencies open client folder and again run
npm i
5. To run both server and client- Recommended
npm run dev
This will run both server and client simultaneously.
If you want to run just the client or the server use the following commands below:
1. To run the server- (Run this in the server folder)
npm run server
2. To run the client (Run this in the server folder)-
npm run client
Client live at (React App): localhost:3000
Server live at (Server): localhost:4000