To run the frontend
- Change directory to client
cd client
- Install node_modules dependencies by running:
npm install
- Run
npm run dev
- Frontend will now run on localhost:8080
To run the backend
- Change directory to server
cd server
- Install node_modules dependencies by running:
npm install
- Run
npm run server
- Backend will now run on localhost:5000
!!!Make sure to run the backend on port 5000 for the website to work correctly.