A simple, personal GTD application built for Val Town.
├── backend/
│ ├── index.ts # Main Hono server
│ ├── database/
│ │ ├── schema.ts # Database schema and migrations
│ │ └── queries.ts # Database query functions
│ └── routes/
│ └── api.ts # API routes
├── frontend/
│ ├── index.html # Main HTML template
│ ├── index.tsx # React app entry point
│ └── components/
│ ├── App.tsx # Main app component
│ ├── TaskList.tsx # Task list component
│ └── TaskForm.tsx # Task creation/editing form
├── shared/
│ └── types.ts # Shared TypeScript types
└── README.md