This commit is contained in:
2026-04-05 00:43:23 +05:30
commit 8be37d3e92
425 changed files with 101853 additions and 0 deletions

8
thirdeye/run_api.py Normal file
View File

@@ -0,0 +1,8 @@
"""Entry point to run the ThirdEye API server."""
import sys, os
sys.path.insert(0, os.path.dirname(__file__))
import uvicorn
if __name__ == "__main__":
uvicorn.run("backend.api.routes:app", host="0.0.0.0", port=8000, reload=True)