This is a minimal pnpm + Waku sample project that can be deployed to render.com.
pnpm install
pnpm devVerify the production build:
pnpm build
PORT=3000 pnpm startUse the render.yaml file in this directory.
- Push this project to GitHub.
- In Render, choose New + -> Blueprint.
- Select the repository and deploy.
In the Render Web Service setup page, configure:
- Runtime:
Node - Build Command:
pnpm install --frozen-lockfile && pnpm build - Start Command:
pnpm start - Environment Variable:
NODE_VERSION=25.6.1(or another version that satisfies Waku requirements)
- Waku CLI does not automatically read
PORT, so thestartscript explicitly sets-p ${PORT:-10000}. - Render injects
PORT, and the app starts on that port.