Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 570 Bytes

PROJECT_STRUCTURE.md

File metadata and controls

31 lines (27 loc) · 570 Bytes

Project Structure

Backend

backend/
├── src/
│   ├── modules/
│   │   ├── <feature>/
│   │   │   ├── controller.ts
│   │   │   ├── model.ts
│   │   │   ├── route.ts
│   │   │   └── service.ts
│   └── index.ts
├── package.json
└── tsconfig.json

Frontend

frontend/
├── src/
│   ├── components/
│   ├── hooks/
│   ├── pages/
│   ├── utils/
│   └── index.tsx
├── package.json
└── tsconfig.json