Skip to content

Latest commit

 

History

History
61 lines (38 loc) · 1.06 KB

ProjectSetup.md

File metadata and controls

61 lines (38 loc) · 1.06 KB

Note:

First follow the instructions in CONTRIBUTING.md, to clone the project into your local computer.

Setting up the Project

To set up the dev environment follow the given steps:

Installing the Dependencies

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

Project Live at:

Client live at (React App): localhost:3000

Server live at (Server): localhost:4000