Full-stack student analytics project with a FastAPI backend and a React frontend powered by Vite.
backend/contains the Python 3.12 FastAPI service.frontend/contains the JavaScript React/Vite application.
backend/.venv/bin/uvicorn app.main:app --app-dir backend --reloadThe backend runs at http://127.0.0.1:8000 and provides interactive API documentation at /docs.
cd frontend
npm install
npm run devThe application is intentionally minimal and ready for future database, authentication, analytics, and UI work.