728x90

폴더 구조
dev-camp
├── .eslintrc.js
├── .gitignore
├── .prettierrc
├── nest-cli.json
├── package.json
├── README.md
├── src
│ ├── .DS_Store
│ ├── app.module.ts
│ ├── auth
│ │ ├── adapter
│ │ │ ├── in
│ │ │ │ └── auth.controller.ts
│ │ │ └── out
│ │ │ ├── auth.adapter.ts
│ │ │ ├── auth.entity.ts
│ │ │ └── auth.repository.ts
│ │ ├── domain
│ │ │ └── auth.ts
│ │ └── port
│ │ ├── in
│ │ │ └── auth.useCase.ts
│ │ └── out
│ │ └── auth.port.ts
│ ├── main.ts
│ └── modules
├── test
│ └── jest-e2e.json
├── tsconfig.build.json
├── tsconfig.json
└── yarn.lock
참고 자료 : https://www.youtube.com/watch?v=MKfSLrwLex8
'아카이브 > dev-camp' 카테고리의 다른 글
dev-camp Day 5: CD 구축과 고민 (0) | 2024.03.08 |
---|---|
dev-camp Day 4-1 : Redirect URI & Argon2 장점 (0) | 2024.03.07 |
dev-camp Day 3-1 : Access Token & Refresh Token (0) | 2024.03.06 |
dev-camp Day 2-1 : 예시 코드, 기본 개념 공부하기. 소셜 로그인 구현. (0) | 2024.03.05 |
dev-camp Day 1-1 : Shall We NestJS? (0) | 2024.03.04 |