Files
conference-room-booking-system/README.md

21 lines
526 B
Markdown

# Cliff Hill's Coding Project
## AI Use
I used AI to stub out a couple of files:
* The backend/Dockerfile and frontend/Dockerfile - to speed up the process of getting docker loaded efficiently for the project.
* The compose.yml file - getting the different images gathered together quickly.
* The mermaid diagrams used in this file.
## Diagrams
Docker Compose Components:
```mermaid
graph TD
A[Frontend] -->|HTTP/REST| B[Backend]
B -->|SQL| C[Postgres]
A -->|Docker Network| B
B -->|Docker Network| C
```