An automated scheduling and shift optimization platform designed for hospital clinics (such as the Louis Pasteur University Hospital). The system balances staff availability, specialized qualifications, and complex clinical constraints using Mathematical Optimization.
The application streamlines clinical scheduling by dividing the workflow into two major pillars:
- Core Administration & Tracking (Phase 1):
- Employees: Log in to submit their unavailabilities and manage their medical qualifications.
- Clinic Managers: Oversee specific clinics, manually adjust schedules, and manage staff constraints.
- Automated Optimization (Phase 2):
- Uses a Linear Programming (LP) solver to automatically construct optimal monthly or weekly shift schedules, fully respecting employee unavailabilities and required clinical credentials.
- Frontend: React, Vite, TypeScript, Zustand (State Management), Axios
- Backend: Python (FastAPI), SQLAlchemy (ORM), Alembic (Migrations)
- Database: PostgreSQL
- Containerization: Docker & Docker Compose
βββ .agents/
β βββ rules/ # Custom behavioral guidelines for AI development agents
βββ backend/
β βββ app/
β β βββ api/ # FastAPI REST endpoints
β β βββ models/ # SQLAlchemy ORM models
β β βββ schemas/ # Pydantic data validation and serialization
β β βββ services/ # Core business logic and LP optimization algorithms
β βββ database/ # DB engine sessions and migrations
βββ frontend/
β βββ src/
β βββ api/ # API client configurations (Axios)
β βββ components/ # Reusable UI component library
β βββ stores/ # Global application state (Zustand)
β βββ views/ # Page layouts (Manager Board, Calendars)
βββ docker-compose.yml # Orchestrates Python, React, and PostgreSQL containers
βββ CONTEXT.md # Global technical architectural context
The easiest way to run the entire stack (React frontend, FastAPI backend, and PostgreSQL database) is using Docker Compose.
Make sure you have Docker and Docker Compose installed on your system.
- Clone the repository and navigate to the root directory:
git clone <repository-url>
cd scheduling
- Spin up the containers in detached mode:
docker compose up -d --build
This command automatically:
- Builds the React frontend container.
- Builds the Python FastAPI backend container.
- Pulls and initializes the PostgreSQL database.
- Links them all under a single shared network.
- Verify the services are running:
docker compose ps
- Access the applications:
- Frontend (React UI): http://localhost:3000 (or the port specified in your
docker-compose.yml) - Backend API Docs (Swagger UI): http://localhost:8000/docs
To stop and remove all containers, networks, and associated volumes:
docker compose down -v
If you are modifying this project or using an AI developer agent (like Antigravity), you must strictly adhere to the contracts defined in .agents/rules/:
global.md: Enforces strict English code, docstrings, type hinting, and structural modularity.backend.md: Mandates a strict 1:1:1 domain decoupling (SQLAlchemy Models β Pydantic Schemas β FastAPI Routers).database.md: Outlines transaction safety boundaries and Alembic migration protocols.database-schema.md: Defines the exact relational database layout.