56100b68111e6344c5cfdf9d5c9d59d37c8c3bb0
- Regenerated pnpm-lock.yaml to remove stale workspace references (@groombook/db, @groombook/types) from monorepo extraction - Fixed all relative imports to include .js extensions required by NodeNext module resolution - Corrected db import paths throughout codebase (./db → ./db/index.js or ../db/index.js based on file location) - Removed unused pickN helper function from db/seed.ts - Fixed lint errors: changed const startTime to let where reassignment occurs This unblocks CI which was failing at the "Install dependencies" step. 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
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
Description
Languages
TypeScript
99.3%
JavaScript
0.4%
Dockerfile
0.2%