To run this project :
- Take pull from main branch & run "npm install" to install all dependency.
- For setup mongodb atlas you have to replace username & password with your credentials in .env file.
- Default PORT is 8000 you can change it by updating in .env file
- Script to start : npm run dev
Backend routes:
- Signup : (POST) "/api/users/signup"
- Login : (POST) "/api/users/login"
- All Users: (GET) "/api/users"
- All Tasks By User: (GET) "/api/tasks"
- Task Details: (GET) "/api/tasks/:taskId"
- Create Task: (POST) "/api/tasks"
- Update Task: (PATCH) "/api/tasks/:taskId"
- Update Task Status: (PATCH) "/api/tasks/:taskId/status"
- Delete Task: (DELETE) "/api/tasks/:taskId"