This project is a web application built using the MERN stack, which includes MongoDB, Express.js, React.js, and Node.js. The project utilizes Tailwind CSS and Material UI for the frontend styling. For the backend, Express, MongoDB, Cloudinary, and Multer are used. The project is managed using npm for both client and server dependencies.
git clone https://github.com/yourusername/mern-project.git
cd mern-project
### 2. Install Dependecies
For Client
cd client
npm install
For Server
cd server
npm install
### 3. Environment Variables
MONGODB_URI=your_mongodb_uri
JWT_SECRET=secret_string
CLOUDINARY_CLOUD_NAME=your_cloudinary_cloud_name
CLOUDINARY_API_KEY=your_cloudinary_api_key
CLOUDINARY_API_SECRET=your_cloudinary_api_secret
### 4. Start the Development Servers
For the Server
npm start
For the Client
npm run start