A full-stack to-do list application built with Hono backend and React frontend.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema
│ │ └── queries.ts # Database operations
│ ├── routes/
│ │ └── todos.ts # Todo API routes
│ └── index.ts # Main server entry point
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main app component
│ │ ├── TodoForm.tsx # Add todo form
│ │ ├── TodoItem.tsx # Individual todo item
│ │ └── TodoList.tsx # Todo list container
│ ├── index.html # HTML template
│ └── index.tsx # Frontend entry point
├── shared/
│ └── types.ts # Shared TypeScript types
└── README.md
GET /api/todos
- Get all todosPOST /api/todos
- Create a new todoPUT /api/todos/:id
- Update a todoDELETE /api/todos/:id
- Delete a todoThe app is automatically deployed and accessible via the HTTP trigger. Simply visit the URL to start managing your tasks!