Update service ports in documentation and configuration files to 12000 for backend

This commit is contained in:
2026-04-27 21:35:35 +02:00
parent 8f4d01d34d
commit 80999b3659
5 changed files with 23 additions and 33 deletions
+6 -6
View File
@@ -13,7 +13,7 @@ Describes:
│ ┌─────────────┐ ┌─────────────────────┐ │
│ │ frontend │ │ backend │ │
│ │ (Flask) │ │ (FastAPI) │ │
│ │ :5000 │ │ :8000 │ │
│ │ :5000 │ │ :12000 │ │
│ └──────┬──────┘ └──────────┬──────────┘ │
│ │ │ │
│ └────────┬──────────┘ │
@@ -31,11 +31,11 @@ Describes:
**Mapping of Building Blocks to Infrastructure:**
| Building Block | Container / Process | Port |
| --------------- | ---------------------------- | ---- |
| Flask frontend | `frontend` | 5000 |
| FastAPI backend | `backend` | 8000 |
| DuckDB | File on host (`data/app.db`) | — |
| Building Block | Container / Process | Port |
| --------------- | ---------------------------- | ----- |
| Flask frontend | `frontend` | 5000 |
| FastAPI backend | `backend` | 12000 |
| DuckDB | File on host (`data/app.db`) | — |
## Infrastructure Level 2