Sets up the full Phase 0 foundation: - pnpm workspaces + turbo build graph; native module build approval - packages/shared-types: HTTP contracts (Tip, Auth, Integrations, User) - services/api: Express modular monolith with better-sqlite3/drizzle - auth: Google OAuth2 + PKCE via openid-client v6, cookie sessions - integrations: Todoist OAuth2 connect/disconnect, token vault - recommender: RandomPolicy over Todoist tasks, feedback sink - user: profile, consent capture, full account deletion (GDPR) - apps/web: Next.js 15, three pages (sign-in → connect → tip) - tip page: black canvas, hold-to-act gesture, action sheet - PWA manifest + theme - ml/serving: FastAPI stub implementing the POST /score contract - infra: docker-compose (core/full profiles), Dockerfiles, CI skeleton - .env.example with all required vars documented Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
30 lines
1.0 KiB
Docker
30 lines
1.0 KiB
Docker
FROM node:22-alpine AS base
|
|
RUN npm install -g pnpm
|
|
|
|
FROM base AS deps
|
|
WORKDIR /app
|
|
COPY package.json pnpm-workspace.yaml pnpm-lock.yaml* ./
|
|
COPY packages/shared-types/package.json ./packages/shared-types/
|
|
COPY apps/web/package.json ./apps/web/
|
|
RUN pnpm install --frozen-lockfile
|
|
|
|
FROM base AS builder
|
|
WORKDIR /app
|
|
COPY --from=deps /app/node_modules ./node_modules
|
|
COPY --from=deps /app/packages/shared-types/node_modules ./packages/shared-types/node_modules
|
|
COPY --from=deps /app/apps/web/node_modules ./apps/web/node_modules
|
|
COPY tsconfig.base.json ./
|
|
COPY packages/shared-types ./packages/shared-types
|
|
COPY apps/web ./apps/web
|
|
RUN pnpm --filter @oo/shared-types build
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
RUN pnpm --filter @oo/web build
|
|
|
|
FROM node:22-alpine AS runner
|
|
ENV NODE_ENV=production NEXT_TELEMETRY_DISABLED=1
|
|
WORKDIR /app
|
|
COPY --from=builder /app/apps/web/.next/standalone ./
|
|
COPY --from=builder /app/apps/web/.next/static ./apps/web/.next/static
|
|
COPY --from=builder /app/apps/web/public ./apps/web/public
|
|
CMD ["node", "apps/web/server.js"]
|