This commit is contained in:
rishubm
2025-10-18 22:36:59 -05:00
5 changed files with 8 additions and 0 deletions

View File

@@ -1,6 +1,14 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
from __future__ import annotations from __future__ import annotations
import sys
from pathlib import Path
# Ensure project root is on sys.path when running this file directly
ROOT = Path(__file__).resolve().parents[1]
if str(ROOT) not in sys.path:
sys.path.insert(0, str(ROOT))
import uvicorn import uvicorn