Skip to content
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/backend/app.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# app.py
#!/usr/bin/env python
import os
import sys

# Add the parent directory (the one that contains the "src" folder) to sys.path.
# This allows absolute imports such as "from src.backend.middleware.health_check" to work
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..")))
import asyncio
import logging
import os
Expand Down
Loading