- User registration and login functionality for task management.
- Option to add, edit and delete tasks.
- Option to mark tasks as complete.
- Choosing the priority of the task.
Go to the backend
folder and install packages
npm install
then go to frontend
folder and install packages
npm install
and then go to .env
file in backend
folder and fill in all fields
PORT=YOUR_BACKEND_PORT
MONGO_URL=YOUR_MONGO_DB_URL
JWT_SECRET=YOUR_JWT_PASSWORD
and then go to .env
file in frontend
folder and fill in all fields
VITE_BACKEND_URL=YOUR_BACKEND_URL
NOTE: to run the backend
folder or frontend
folder just type:
npm run dev