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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:24-alpine@sha256:d32cdf619f63fe0471182d08996dd516c6275bb5fd31ae06e55a5
RUN corepack enable
WORKDIR /app
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml .npmrc ./
RUN VITE_GIT_HOOKS=0 pnpm install --frozen-lockfile
RUN VP_GIT_HOOKS=0 pnpm install --frozen-lockfile

FROM dependencies AS build
COPY app.ts mcp.ts cli.ts package.json tsconfig.json tsconfig.build.json ./
Expand Down
2 changes: 1 addition & 1 deletion docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ node dist/cli.js check-config
node dist/cli.js mcp --transport=http
```

Set `VITE_GIT_HOOKS=0` when hooks should not be installed.
Set `VP_GIT_HOOKS=0` when hooks should not be installed.

Provider HTTP suites use `stubFetch` (which installs a pin-path transport
override), so `vp test` and CI stay deterministic without live dials. Dyn is
Expand Down
Loading