- Change into backend directory
cd backend/
- Install dependencies
npm install
- Create Environment variables
touch .env
- add these variables in .env file
- CLIENT_URL=**** CLIENT_URL_HERE ****
- DB_URL=**** MONGO_DB_URL_HERE ****
- Install nodemon if not already
npm install nodemon --save-dev
- Start the server
npm run dev
- Change into frontend directory
cd frontend
- Install dependencies
npm install
- Create Environment variables
touch .env
- add these variables in .env file
- REACT_APP_SERVER_URL=**** SERVER_URL_HERE ****
- Start the client server
npm start