A simple task management application with .NET Core Web API backend and React frontend.
- .NET 8.0 SDK
cd backend/TaskManager.Api
dotnet runThe API will be available at https://localhost:7154
- GET
/api/tasks- Get all tasks - GET
/api/tasks/{id}- Get task by ID - POST
/api/tasks- Create new task - PUT
/api/tasks/{id}- Update task - DELETE
/api/tasks/{id}- Delete task
- Node.js 16+
- npm
cd frontend/taskmanager-ui
npm install
npm startThe app will be available at http://localhost:3000
- Create new tasks
- Mark tasks as completed
- Delete tasks
- Responsive UI