This repo runs three services locally:
- Backend (NestJS + SQLite)
- Frontend (Next.js)
- AI Pipeline (FastAPI + YOLO + EasyOCR)
docker compose --profile dev up --builddocker compose --profile test up --build- Backend: http://localhost:3000
- Frontend: http://localhost:3001
- Pipeline: http://localhost:8000
curl http://localhost:8000/healthcurl -X POST http://localhost:8000/detect \
-F "image=@/path/to/image.jpg" \
-F "trackId=1"If AUTO_REGISTER=true (default in compose), the pipeline sends the detected plate to:
POST /cars/detect on the backend.