Skip to content

Commit efa7ab0

Browse files
authored
Update README.md
1 parent 2d67abd commit efa7ab0

File tree

1 file changed

+31
-10
lines changed

1 file changed

+31
-10
lines changed

README.md

Lines changed: 31 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ Coming Soon...
7979
<aside>
8080
➡️ Inbound Port
8181

82+
- **Security**
83+
- 외부 요청의 보안 처리 및 인증과 인가를 담당
8284
- **Web**
8385
- 사용자 인터페이스 또는 REST API를 처리하는 컨트롤러
8486
- 입력 유효성 검증을 진행
@@ -91,10 +93,11 @@ Coming Soon...
9193
- 데이터베이스와의 상호작용을 위한 orm 데이터베이스 매핑 및 repository
9294
- **Api**
9395
- 외부 서비스와의 통신을 위한 클라이언트
94-
9596
- **Infrastructure**
9697
- 데이터베이스, 외부 API, 파일 시스템 등 외부 세계와의 연결을 처리
9798
- 다른 레이어에 대해 의존하지 않습니다.
99+
- **JWT**
100+
- JWT 토큰 생성 및 토큰의 유효성을 검증
98101
</aside>
99102

100103

@@ -105,14 +108,29 @@ Coming Soon...
105108
├── 💽 TaskflowApplication
106109
├── 🗂️adapter
107110
│   ├── 🗂️inbound
111+
│   │   └── 📂security
108112
│   │   └── 📂web
109113
│   │   ├── admin
110114
│   │   ├── auth
111-
│   │   └── dto
115+
│   │   ├── dto
116+
│   │   ├── example
117+
│   │   ├── history
118+
│   │   ├── label
119+
│   │   ├── log
120+
│   │   ├── member
121+
│   │   ├── label
122+
│   │   ├── notification
123+
│   │   ├── statistics
124+
│   │   └── task
112125
│   │  
113126
│   └── 🗂️outbound
114127
│   ├── 📂api
115128
│   ├── 📂infrastructure
129+
│   │ ├── elastic
130+
│   │ ├── redis
131+
│   │ ├── s3
132+
│   │ └── sse
133+
│   └── 📂️jwt
116134
│   └── 📂️security
117135
│   └── 📂persistense
118136
│   ├── entity
@@ -131,20 +149,23 @@ Coming Soon...
131149
├── 🗂️application
132150
│   ├── 🗂️mapper
133151
│   └── 🗂️port
134-
│   ├── 📂inbound
135-
│   └── 📂outbound
152+
│   │ ├── 📂inbound
153+
│   │ └── 📂outbound
154+
│   └── 🗂️service
136155
├── 🗂️common
137156
│   └── 🗂️annotation
138157
│   ├── 🗂️exception
139158
│   └── 🗂️response
140159
├── 🗂️config
141160
├── 🗂️domain
142-
│   ├── 🗂️model
143-
│      ├── 📂common
144-
│      ├── 📂log
145-
│      ├── 📂member
146-
│      ├── 📂notification
147-
│      └── 📂task
161+
│   └── 🗂️model
162+
│   │    ├── 📂auth
163+
│   │    ├── 📂common
164+
│   │    ├── 📂log
165+
│   │    ├── 📂member
166+
│   │    ├── 📂notification
167+
│   │    └── 📂task
168+
│   └── 🗂️policy
148169
└── 🗂️exception
149170
```
150171

0 commit comments

Comments
 (0)