Install Node.js v16.
In your terminal, navigate to the /backend directory of the project and run the following command to install the backend dependencies:
cd backend
yarn install
Or
npm install
This command will install all the required packages specified in the package.json file.
In the same terminal, run the following command to start the backend server:
yarn start
Or
npm run start
This command will start the backend server, and it will listen for incoming requests.
Open a new terminal window , and run the following command to install the frontend dependencies:
cd frontend
yarn install
Or
npm install --force
After installing the frontend dependencies, run the following command in the same terminal to start the frontend server:
yarn start
Or
npm run start
This command will start the frontend server, and you'll be able to access the website on localhost:3000 in your web browser.