A minimal full‑stack demo: create notes in the UI, stored in a SQLite database via Prisma.
- Next.js (App Router)
- In-memory store (no database required)
npm install
npm run devNotes are stored in memory for this demo (no DB required).
GET /api/notes→ list notesPOST /api/notes→ create note{ title, content }
Works on Vercel. For production, switch to Postgres (e.g., Neon/Supabase) and update DATABASE_URL.