Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit e22fc86d authored by GotthardG's avatar GotthardG
Browse files

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.
parent faebccf6
No related branches found
No related tags found
No related merge requests found
Pipeline #54516 failed
......@@ -5,6 +5,8 @@ from pathlib import Path
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from fastapi.staticfiles import StaticFiles
from uvicorn import lifespan
from app import ssl_heidi
from app.routers import (
proposal,
......@@ -72,6 +74,7 @@ def run_server():
# Get project metadata from pyproject.toml
project_name, project_version = get_project_metadata()
app = FastAPI(
lifespan=lifespan,
title=project_name,
description="Backend for next-gen sample management system",
version=project_version,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment