Full-stack · Agribusiness · 2026
A multi-tenant platform that gives cattle producers a single place to register animals and follow each one through its full lifecycle.
INTEGRAZOO is a full-stack livestock management system built on the Next.js App Router, giving producers one place to register cattle and track every weighing, reproductive event, health record, and disposal across an animal's life.
The platform is multi-tenant by design: every record is scoped to the signed-in user, with role-gated admin areas and session-based auth enforced both in middleware and server-side.
The hardest part was making ear tags unique per producer rather than globally. The bovine table uses a composite primary key of ear tag plus user id, and every related table — weighings, reproduction, health, disposals — references both, so all queries had to consistently filter by the session user to keep tenants isolated.