From bd852bea8ff4ef678d9738e9cb4886d25b36f0aa Mon Sep 17 00:00:00 2001 From: GotthardG <51994228+GotthardG@users.noreply.github.com> Date: Wed, 19 Mar 2025 09:20: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/config_dev.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 backend/config_dev.json diff --git a/backend/config_dev.json b/backend/config_dev.json new file mode 100755 index 0000000..670d0bf --- /dev/null +++ b/backend/config_dev.json @@ -0,0 +1,10 @@ +{ + "ssl_cert_path": "ssl/cert.pem", + "ssl_key_path": "ssl/key.pem", + "OPENAPI_URL": "https://127.0.0.1:8000/openapi.json", + "SCHEMA_PATH": "./src/openapi.json", + "OUTPUT_DIRECTORY": "./openapi", + "PORT": 8000, + "SSL_KEY_PATH": "../backend/ssl/key.pem", + "SSL_CERT_PATH": "../backend/ssl/cert.pem" +} \ No newline at end of file