This repo is split into a frontend app and a backend app so UI code and server-side work can evolve separately.
youcode/
frontend/ # Next.js app and UI assets
backend/ # future API/services layer
The frontend lives in frontend/ and contains the current Next.js experience.
cd frontend
npm install
npm run devThis starts the Next.js dev server on http://localhost:3000.
The backend lives in backend/. It is scaffolded for future API routes, services, and data-processing work.
cd backend
npm install
npm run devCurrent folders:
backend/src/routesfor HTTP endpointsbackend/src/servicesfor domain logicbackend/src/datafor backend-owned datasets or loaders
- Unused default Next.js
public/*.svgassets were removed. - Old generated
.nextbuild output was removed from the repo structure. - Frontend resource data was moved out of
app/intofrontend/lib/data/to keep route files cleaner.