Living on the Edge Runner
Living on the Edge Runner
Repository Guidelines
Project Structure & Module Organization
The Next.js App Router, API routes, and layout logic live in src/app. Shared building blocks stay alongside their domain: UI in src/components, contexts in src/contexts, reusable hooks in src/hooks, utilities in src/lib, types in src/types, and deterministic fixtures in src/data. Database schema, migrations, and seeds are under prisma/. Documentation updates belong in docs/, static assets in public/, and operational scripts in scripts/.
Write a comment