#!/bin/bash
echo ""
echo "============================================"
echo "  Migration Assessment Tool Running"
echo "============================================"
echo "  UI:  http://localhost:8080/assessment_ui.html"
echo "  API: http://localhost:8000/docs"
echo "============================================"
echo ""
python -m http.server 8080 &
exec uvicorn api:app --host 0.0.0.0 --port 8000
