A comprehensive hospital management system built with TypeScript, SQLite, and Bootstrap.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema setup
│ │ └── queries.ts # Database query functions
│ ├── routes/
│ │ ├── auth.ts # Authentication routes
│ │ ├── patients.ts # Patient management routes
│ │ ├── doctors.ts # Doctor management routes
│ │ ├── appointments.ts # Appointment routes
│ │ └── static.ts # Static file serving
│ └── index.ts # Main server entry point
├── frontend/
│ ├── components/ # Reusable UI components
│ ├── pages/ # Individual page templates
│ ├── assets/ # CSS and JS files
│ └── index.html # Main dashboard
└── shared/
└── types.ts # Shared TypeScript interfaces