A web-based collaborative task manager that allows teams to efficiently organize and manage tasks together. This project is built with Node.js for the backend and React for the frontend.
- Create, edit, and delete tasks.
- Assign tasks to team members.
- Track task status and due dates.
- Collaborate with team members in real-time.
To start backend in your local env, add a new file "config.js". add the following snippet in "config.js"
const MONGO_URL = "add_your mongo_url";
const JWT_TOKEN = "add_your_token";
module.exports = { MONGO_URL, JWT_TOKEN };