4553f63deb
- monorepo (npm workspaces): apps/api (Fastify+Prisma+TS), apps/web (Vite+React+TS), packages/shared (zod schemas) - SSO via auth.queo.ru: jose+JWKS plugin, requireDocPermission(viewer|user|admin) - DEV_BYPASS_AUTH for local development (hard-checked off in production) - M2: organization upsert, clients CRUD with search, services catalog with soft-delete - BigInt -> Number serializer for Prisma money columns - Embedded Postgres + npm run dev:demo for one-command local boot - Docker compose for queoserver: postgres + api + web (nginx as ingress proxying /api -> api:3030) - First migration 0_init committed (prisma migrate diff) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
15 lines
470 B
Docker
15 lines
470 B
Docker
FROM node:20-alpine AS build
|
|
WORKDIR /app
|
|
COPY package.json package-lock.json* tsconfig.base.json ./
|
|
COPY apps/web/package.json apps/web/
|
|
COPY packages/shared/package.json packages/shared/
|
|
RUN npm install
|
|
COPY apps/web ./apps/web
|
|
COPY packages/shared ./packages/shared
|
|
RUN npm run build --workspace apps/web
|
|
|
|
FROM nginx:1.27-alpine AS runtime
|
|
COPY docker/nginx-spa.conf /etc/nginx/conf.d/default.conf
|
|
COPY --from=build /app/apps/web/dist /usr/share/nginx/html
|
|
EXPOSE 80
|