mirror of
https://github.com/arkorty/B.Tech-Project-III.git
synced 2026-04-19 12:41:48 +00:00
9 lines
237 B
Python
9 lines
237 B
Python
"""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)
|