diff --git a/README.md b/README.md
index b7bd10d..0cd61fd 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,167 @@
-[![codecov](https://codecov.io/gh/Gosrock/Ticket-Backend-22th/branch/dev/graph/badge.svg?token=P6HHFWVER9)](https://codecov.io/gh/Gosrock/Ticket-Backend-22th)
+![Frame 34257](https://user-images.githubusercontent.com/55226431/184820864-e8573a2b-b48d-4eb9-a5f7-25ecf7192ec6.png)
+
+
+
+# 고스락 티켓 2.0
+
+> 22번째 정기공연 [We are GOSROCK, Invites you] • 백엔드 레포지토리
+
+
+
+
+
+
+
+
+
+
+## ✨ 서비스 페이지
+
+- [https://gosrock.band](https://gosrock.band)
+
+
+
+
+
+
+
+
+
+
+
+
+
+## 📢 기획 / 디자인
+- [Figma](https://www.figma.com/file/J6HVLxWGuCFgAQUCdWBUsT/%EA%B3%A0%EC%8A%A4%EB%9D%BD-%ED%8B%B0%EC%BC%93%EC%98%88%EB%A7%A4?node-id=2026%3A6310)
+- [Storybook](https://gosrock.github.io/Ticket-Front-22nd/?path=/story/common-inputform--%ED%9C%B4%EB%8C%80%ED%8F%B0%EB%B2%88%ED%98%B8-%EC%9E%85%EB%A0%A5)
+- [[고스락 티켓 2.0] 기획, 디자인 개편](https://9yujin.tistory.com/56?category=1025360)
+
+
+
+
+## 📚 사용 스택
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+## 🔍 개발 과정
+ - [찬진 : 두번째 고스락 티켓예매는 어떻게 달라졌을까요?](https://devnm.tistory.com/15)
+ - [찬진 : 유저 role 기반 api 인가](https://devnm.tistory.com/16)
+ - [찬진 : ValiationError 커스텀하기](https://devnm.tistory.com/17)
+ - [찬진 : redis forRootAsync 모듈만들기](https://devnm.tistory.com/18)
+ - [찬진 : transaction with repository](https://devnm.tistory.com/19)
+ - [찬진 : rollback repository test](https://devnm.tistory.com/20)
+ - [찬진 : 같은 코드 응답 데코레이터 만들기 시리즈](https://devnm.tistory.com/21)
+ - [경민 : nestjs + socket.io 사용해서 실시간 공연 입장 시스템 구현하기](https://gengminy.tistory.com/23)
+
+
+
+
+
+## 📝 ERD
+
+
+
+
+
+
+## 📁 Project Structure
+
+```shell
+.github # 도커 빌드 액션
+.husky # 깃 훅 프리티어관련
+docker-compose.yml # 로컬 개발환경 설정
+src
+├─auth # 인증 관련 모듈
+├─common # 공통 소스 디렉토리
+│ ├─consts # enum, 상수 정의
+│ ├─decorators # 성공,에러 스웨거 응답 데코레이터등
+│ ├─dtos # 페이지네이션,에러,성공등 공통 디티오
+│ ├─errors # 커스텀 에러정의
+│ ├─exceptions # exception 필터
+│ ├─funcs
+│ ├─interceptors # 성공응답 인터셉터
+│ ├─pipes
+│ └─utils
+├─config # configSerivce 커스텀 모듈
+├─database # 데이타 베이스 관련 모듈
+│ ├─entities
+│ ├─migrations
+│ └─repositories
+├─orders # 주문관련 모듈
+├─queue # bull js 레디스 큐 모듈
+├─redis # 레디스 클라이언트 모듈
+├─slack # 관리자 인증, 슬랙 알림 모듈
+├─sms # naver sms 모듈
+├─socket # 실시간 입장확인 소켓 모듈
+├─tickets # 티켓 관련 모듈
+└─users # 유저,댓글 관련 모듈
+```
+
+
+
+## 💻 Developers
+
+
diff --git a/src/auth/dtos/RequestValidation.response.dto.ts b/src/auth/dtos/RequestValidation.response.dto.ts
index 53c924b..86ed562 100644
--- a/src/auth/dtos/RequestValidation.response.dto.ts
+++ b/src/auth/dtos/RequestValidation.response.dto.ts
@@ -7,7 +7,7 @@ export class ResponseRequestValidationDto {
phoneNumber: string;
@ApiProperty({ description: '테스트용 인증번호', type: String })
- @Expose()
+ @Exclude()
validationNumber: string;
@ApiProperty({ description: '이미 가입했는지에대한 정보', type: Boolean })