This repository contains a boilerplate for a Task Management System with a C# backend API and React frontend. The system is designed to manage complex tasks with dependencies, priorities, and advanced filtering capabilities.
You are tasked with completing a Task Management System that allows users to create, update, delete, and view tasks. The system should handle task dependencies (tasks that must be completed before others can start), priority management, and provide advanced filtering and sorting capabilities.
- Backend: ASP.NET Core Web API (C#)
- Frontend: React with TypeScript
- State Management: React Context API and hooks
- Styling: CSS Modules or styled-components (your choice)
- Implement the missing endpoints in the Task Controller
- Complete the Task Service implementation
- Add validation for task creation and updates
- Implement task dependency management logic
- Add advanced filtering capabilities to the API
- Complete the Task component to display task details
- Implement the form for creating and editing tasks
- Create a dashboard view with task statistics
- Implement drag-and-drop functionality for task prioritization
- Add advanced filtering and sorting UI
For a quick setup, you can use the provided setup script:
./setup.sh
This will install all dependencies for both the backend and frontend.
- Navigate to the
backend/TodoApi
directory - Run
dotnet restore
to restore dependencies - Run
dotnet run
to start the API server
- Navigate to the
frontend/todo-app
directory - Run
npm install
to install dependencies - Run
npm start
to start the development server
Note: If you encounter any issues with the React app setup, you may need to recreate it using:
npx create-react-app frontend/todo-app --template typescript
Then copy the provided component files into the appropriate directories.
You can run both the frontend and backend concurrently using:
npm start
from the root directory.
- Code Quality: Clean, maintainable, and well-structured code
- Architecture: Proper separation of concerns and design patterns
- Performance: Efficient algorithms and optimized React rendering
- Error Handling: Proper error handling and user feedback
- UI/UX: Intuitive and responsive user interface
- Testing: Comprehensive unit and integration tests
- Implementing real-time updates using SignalR
- Adding user authentication and authorization
- Creating a mobile-responsive design
- Implementing keyboard shortcuts for power users
- Adding dark mode support
- Fork this repository
- Complete the challenge
- Submit a pull request with your changes
- Include a brief explanation of your implementation decisions
Good luck!