This repo combines the aaa React frontend with the NEXUSAI FastAPI backend.
backend/: FastAPI API (MongoDB + SerpAPI)src/,public/: React + Vite frontend
cd d:\aaa\backend
python -m venv .venv
.\.venv\Scripts\activate
pip install -r requirements.txt
python -m uvicorn app.main:app --reload --host 0.0.0.0 --port 8000Set environment variables in d:\aaa\backend\.env (MongoDB and SerpAPI).
cd d:\aaa
npm install
npm run devVite proxies /api to http://localhost:8000 for local development.
POST /api/signupPOST /api/loginPOST /api/auto-match(multipart resume upload)