A modern task manager application built with React, Express, and MongoDB. This project features a sleek UI with Tailwind CSS and glassmorphism effects, allowing users to easily create, read, update, and delete tasks.
/client - Contains the React frontend application /server - Contains the Express backend application
git clone https://github.com/yourusername/task-manager-app.git
cd task-manager-app
Navigate to the server directory:
cd server
Install server dependencies:
npm install
Create a .env file in the server directory and add your environment variables (e.g., MongoDB connection string):
MONGO_URI=your_mongo_connection_string
PORT=8888
Start the server with Nodemon:
nodemon server.js
Open a new terminal window/tab and navigate to the client directory:
cd client
Install client dependencies::
npm install
Start the frontend development server:
npm run dev