8f7104c3a0dbcb68d8081c797ecfed3d2c56d82e
fix(GRO-1533): revert Dockerfile to build from apps/api/src/ Reverts the Dockerfile change that switched from pnpm --filter @groombook/api build to pnpm build, which caused the image to build from root src/ instead of apps/api/src/. This produced HTTP 500 on all authenticated admin routes. Conflict with PR #45 (seed filter fix) resolved: migrate/seed/reset stages use @groombook/api db:migrate|seed|reset since the builder only has apps/api/. 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%