This is a Bookstore App built using the MERN (MongoDB, Express.js, React, Node.js) stack.
To install all the dependencies, run the following commands in both the frontend and backend directories:
cd frontend
npm install
cd backend
npm install
Before running the app, make sure to update the MongoDB connection string in the backend/config.js file. Replace the existing URL with your own MongoDB URL, which will be provided when you create your database.
To start the backend server, navigate to the backend directory and run:
cd backend
npm run dev
To start the frontend server, navigate to the backend directory and run:
cd frontend
npm run dev
Now, you should have both the backend and frontend servers up and running for your Bookstore app.