Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ jobs:

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9

- name: Setup Node.js
uses: actions/setup-node@v4
Expand All @@ -40,8 +38,6 @@ jobs:

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9

- name: Setup Node.js
uses: actions/setup-node@v4
Expand All @@ -65,8 +61,6 @@ jobs:

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down Expand Up @@ -113,8 +107,6 @@ jobs:

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20
22
9 changes: 6 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,16 @@
# Run them as a separate release/pre-deploy step, e.g. `pnpm db:migrate`
# (see README "Deployment").

FROM node:20-alpine AS base
RUN npm install -g pnpm@9
FROM node:22-alpine AS base
# Use the pnpm version pinned in package.json's "packageManager" field via corepack.
RUN corepack enable

# --- Dependencies ---
FROM base AS deps
WORKDIR /app
COPY package.json pnpm-lock.yaml ./
# pnpm-workspace.yaml carries the build-script allowlist (allowBuilds) and
# overrides, so it must be present for the install to behave like local/CI.
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
RUN pnpm install --frozen-lockfile

# --- Build ---
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Claude will run the skill end-to-end and ask you the few decisions it actually n

## Prerequisites

- Node.js 20 or newer
- Node.js 22 or newer (the pinned `pnpm` requires Node 22.13+)
- Git
- Docker **or** Podman (for the included PostgreSQL service and for building the deployment image). For `podman compose`, also install a compose provider (`docker-compose` or `podman-compose`).
- A package manager: `pnpm`, `npm`, or `yarn`
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "agentic-coding-starter-kit",
"version": "1.1.2",
"packageManager": "pnpm@11.6.0",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
Expand Down
Loading