Chris Farhood b361016406 fix: address QA feedback on PR #2
- Fix test mock paths from "./db" to "../db" to match route imports
- Add "test" back to build job needs array (regression from previous PR)

This addresses QA feedback:
1. Test job missing DATABASE_URL - fixed by correcting mock paths so tests use mocked db instead of trying to connect to real DB
2. Build job dropped test from needs - restored to prevent building with broken tests
3. Docker push permission denied - requires CTO escalation for GHCR org config

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-05-11 04:29:08 +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

apps/api/        # 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%