A full-stack application for managing client tasks with CRUD operations.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ └── tasks.ts # Task API routes
│ └── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main React component
│ │ ├── TaskForm.tsx # Add/Edit task form
│ │ └── TaskList.tsx # Task list display
│ ├── index.html # HTML template
│ └── index.tsx # Frontend entry point
├── shared/
│ └── types.ts # Shared TypeScript types
└── README.md
GET /api/tasks - Get all tasksPOST /api/tasks - Create a new taskPUT /api/tasks/:id - Update a taskDELETE /api/tasks/:id - Delete a task