0e64f9d3ae0ab6c8d6df14a97bc4db81e27d403e
- Add UAT_CLIENT (name: "UAT Customer", email: uat-customer@groombook.dev, phone: 555-0100, address: 1 UAT Lane, status: active) - Add UAT_PETS: Bella (Poodle, curly) and Max (Labrador Retriever, short) - Add idempotent UAT Client upsert block and UAT Pets loop after Demo Dog - Change adminSeedRouter.post("/seed") → adminSeedRouter.post("/") so the mounted path is /api/admin/seed (not /api/admin/seed/seed) Fixes the build-path mismatch where the Dockerfile's COPY src/ src/ would not include the UAT data changes that were only in apps/api/src/. Issue: GRO-1746 Fixes: GRO-1743 Co-Authored-By: Paperclip <noreply@paperclip.ing>
GroomBook API
GroomBook API service — extracted from the groombook/app monorepo.
Overview
This repository contains the GroomBook API service, including:
- REST API endpoints
- Database schema and migrations (via Drizzle ORM)
- Authentication (via Better Auth)
- Background job handlers
Structure
src/ # API service source
packages/db/ # Database schema, migrations, and utilities
packages/types/ # Shared TypeScript types
Setup
pnpm install
cp .env.example .env # Fill in required environment variables
pnpm --filter @groombook/api dev
Docker
docker build -t ghcr.io/groombook/api:latest .
docker run -p 3000:3000 ghcr.io/groombook/api:latest
License
AGPL-3.0-only
Description
Languages
TypeScript
99.3%
JavaScript
0.4%
Dockerfile
0.2%