File size: 273 Bytes
cc6cee7 | 1 2 3 4 5 6 7 8 9 10 11 12 | import sys
import os
import uvicorn
# Fix path to allow imports from backend folder
sys.path.append(os.path.join(os.path.dirname(__file__), "backend"))
from hunter_backend import app
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=10000)
|