- navigate to frontend folder
- run npm install in terminal This command installs all the necessary modules for frontend.
- npm start
Runs the app in the development mode.
Open http://localhost:3000 to view it in your browser.
The page will reload when you make changes.
- navigate to backend folder
- run npm install in terminal This command installs all the necessary modules for backend.
- nodemon server.js
Listens to the server at http://localhost:5000.
Nodemon restarts the server when you make changes.
- Navigate to frontend/src/App.jsx
- Configure the ApiEndpoint variable (place your server url http://localhost:5000 in this Example)
- Navigate to backend/server.js
- place your mongoDb connection string to connect to your Database.