From f3951f5be1093aeb406318ac97c615aeb5f43105 Mon Sep 17 00:00:00 2001 From: GotthardG <51994228+GotthardG@users.noreply.github.com> Date: Thu, 10 Apr 2025 00:26:15 +0200 Subject: [PATCH] Refactor Docker setup and migrate to PostgreSQL Streamlined Dockerfiles with clearer ENV variables and build args. Switched backend database from MySQL to PostgreSQL, updated configurations accordingly, and added robust Docker Compose services for better orchestration, including health checks and persistent storage. --- backend/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/main.py b/backend/main.py index 4a983c0..3f25660 100644 --- a/backend/main.py +++ b/backend/main.py @@ -174,7 +174,7 @@ app = FastAPI( description="Backend for next-gen sample management system", version=project_version, servers=[ - {"url": "https://mx-aare-test.psi.ch:1492", "description": "Default server"} + {"url": "https://mx-aare-test.psi.ch:8000", "description": "Default server"} ], ) # Apply CORS middleware