A simple website where customers can browse and order pastries online.
frontend/ - Customer-facing ordering interfacebackend/ - API endpoints and order managementshared/ - Common types and utilitiesThe main entry point is backend/index.ts which serves both the API and frontend files.
Uses SQLite to store customer orders with the following schema:
GET / - Serves the main ordering pagePOST /api/orders - Submit a new orderGET /api/orders - Get all orders (admin)