Files

17 lines
392 B
Python
Raw Permalink Normal View History

2025-10-18 19:15:41 -05:00
#!/usr/bin/env python3
from __future__ import annotations
2025-10-18 21:38:44 -05:00
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))
2025-10-18 19:15:41 -05:00
import uvicorn
if __name__ == "__main__":
uvicorn.run("hpcsim.api:app", host="0.0.0.0", port=8000, reload=False)