Hono-based API server for the Meals recipe management application.
index.ts - Main HTTP val entry point
backend/
├── index.ts # Hono app setup and route mounting
├── database/
│ ├── migrations.ts # SQLite table schemas
│ └── queries.ts # Database query functions
└── routes/
└── *.ts # API route modules
GET /api/health - Returns server statusGET /api/recipes - List all recipesGET /api/recipes/:id - Get recipe detailsPOST /api/recipes - Create recipeDELETE /api/recipes/:id - Delete recipePOST /api/ingest - Extract recipe from URL using AIPOST /api/shopping-list - Generate shopping list from recipes