https://github.com/MGuruNikhil/eisenhowerToDo.git
This project is a full-stack application for managing tasks using the Eisenhower Matrix. It consists of a frontend built with React and a backend built with Node.js and Express.
.
โโโ .gitignore
โโโ backend
โ โโโ .env
โ โโโ allJsFun.js
โ โโโ app.js
โ โโโ config.js
โ โโโ index.js
โ โโโ model
โ โ โโโ todoModel.js
โ โ โโโ userModel.js
โ โโโ package.json
โ โโโ routes
โ โ โโโ authRoute.js
โ โ โโโ todoRoute.js
โ โโโ vercel.json
โโโ frontend
โ โโโ components.json
โ โโโ index.html
โ โโโ jsconfig.json
โ โโโ package.json
โ โโโ postcss.config.js
โ โโโ public
โ โโโ src
โ โ โโโ App.jsx
โ โ โโโ assets
โ โ โโโ components
โ โ โโโ config.js
โ โ โโโ contexts
โ โ โโโ index.css
โ โ โโโ lib
โ โ โโโ main.jsx
โ โ โโโ pages
โ โโโ tailwind.config.js
โ โโโ vite.config.js
โโโ README.md
git clone https://github.com/MGuruNikhil/eisenhowertodo.git
cd eisenhowertodo
cd backend
npm install
cd ../frontend
npm install
.env file inside backend directory and add your environment variables:MONGO_NAME=your_mongo_username
MONGO_PASSWORD=your_mongo_password
SECRET=your_jwt_secret
frontend/src/config.js, comment out the 1st ine and uncomment the 2nd line before starting the development server
backend/app.js, comment out 18-22 lines and uncomment the 25th line before starting the development server
cd backend
npm run dev
cd frontend
npm run dev
http://localhost:3000.This project is licensed under the ISC License.