Minimal public Next.js template for the Yutori Scout Vercel Marketplace listing.
This repo is intentionally small. It only proves that process.env.YUTORI_API_KEY is available to a deployed app and exposes a simple health route.
app/page.tsxrenders the configuration status and a masked preview ofYUTORI_API_KEYapp/api/health/route.tsreturns JSON with the current configuration state
pnpm install
cp .env.example .env.local
pnpm devSet YUTORI_API_KEY in .env.local if you want the page to render the ready state locally.
- Create a new Vercel project from this repository or from the Marketplace deploy URL.
- Add
YUTORI_API_KEYas a project environment variable in Vercel. - Deploy the project.
- Visit
/api/healthand confirm the JSON response shows"configured": true.