From 35d4cceea3d7be1e1597b26d0a690dabdc46eda8 Mon Sep 17 00:00:00 2001 From: GotthardG <51994228+GotthardG@users.noreply.github.com> Date: Wed, 19 Mar 2025 09:43:44 +0100 Subject: [PATCH] Update dependencies and improve Python path handling Updated several frontend dependencies including MUI packages and added new ones like `@mui/x-charts`. Adjusted the Python path setup in the CI configuration to correctly point to the `aaredb` backend, ensuring accurate module resolution. --- backend/images/__init__.py | 0 backend/main.py | 1 + 2 files changed, 1 insertion(+) create mode 100644 backend/images/__init__.py diff --git a/backend/images/__init__.py b/backend/images/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/main.py b/backend/main.py index 228bcec..2483e65 100644 --- a/backend/main.py +++ b/backend/main.py @@ -225,6 +225,7 @@ if __name__ == "__main__": # Test or CI Mode: Run server process temporarily for test validation ssl_dir = Path(cert_path).parent ssl_dir.mkdir(parents=True, exist_ok=True) + os.makedirs("images", exist_ok=True) # Generate self-signed certs if missing if not Path(cert_path).exists() or not Path(key_path).exists(): -- GitLab