Flea Flicker 0e64f9d3ae
CI / Test (pull_request) Successful in 9s
CI / Lint & Typecheck (pull_request) Successful in 9s
CI / Build & Push Docker Images (pull_request) Failing after 28s
fix(gro-1746): apply UAT seed data to root src/routes/admin/seed.ts
- 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>
2026-05-25 18:35:26 +00:00
2026-05-14 17:42:22 +00:00

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

S
Description
GroomBook API service (extracted from groombook/app monorepo)
Readme 3.8 MiB
Languages
TypeScript 99.3%
JavaScript 0.4%
Dockerfile 0.2%