HunterAI / main.py
Abhisingh-18's picture
Mirror of github.com/Abhisingh18/HunterAI
cc6cee7 verified
Raw
History Blame Contribute Delete
273 Bytes
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)