0a3eb8a2829744e7f21a3da660aafa0b7638c28e
Use `corepack install -g` instead of `corepack prepare --activate` to write pnpm to a stable global path (/usr/local/bin/pnpm) rather than relying on corepack shims that re-validate against npmjs.org at runtime. Set COREPACK_ENABLE_DOWNLOAD_PROMPT=0 and COREPACK_ENABLE_STRICT=0 to suppress the interactive download prompt and strict version checks that also trigger network access. Remove the dead `RUN mkdir -p /home/node/.cache/node/corepack` line from the builder stage (vestigial cache-location configuration). Fixes: GRO-1916 (prod migrate-schema EAI_AGAIN on registry.npmjs.org) Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
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%