import uvicorn import os import sys # Ensure the app directory is in the path sys.path.append(os.path.dirname(os.path.abspath(__file__))) if __name__ == "__main__": print("--- VulneraAI Production Server Starting ---") print("Access the dashboard at http://localhost:8000") uvicorn.run("app.main:app", host="0.0.0.0", port=8000, reload=False)