Minimal Next.js App Router scaffold for extracting YouTube transcripts.
Getting started
- Install dependencies:
npm install- Run dev server:
npm run devWhat is included
- Next.js 14 App Router (TypeScript)
- Tailwind CSS starter
- API route skeletons:
app/api/health/route.ts,app/api/transcript/route.ts - Basic tests using
vitestfor the health helper
Notes
- This is a minimal scaffold matching the PRD. The
POST /api/transcriptroute is a placeholder — integrate your chosen transcript service (Python microservice or Node library) later.