This repo contains only the current stack:
- React in
frontend/ - TypeScript + Express in
backend/
The backend serves frontend/dist in production.
frontend/: React + TypeScript + Vite frontendfrontend/src/: application sourcefrontend/src/pages/: page-level flow screensfrontend/src/components/: shared UI piecesfrontend/src/context/: shared React statefrontend/src/hooks/: React hooksfrontend/src/helpers/: frontend utilitiesfrontend/src/styles/: Sass stylesfrontend/public/: static assets copied by Vite
backend/: TypeScript backendbackend/src/routes/: Express routesbackend/src/services/: integrations and service-layer codebackend/src/helpers/: backend helpers
- Default to editing
frontend/for UI work. - Default to editing
backend/for API work. - Treat
frontend/dist/,backend/dist/, andnode_modules/as generated output and do not edit them directly.