-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [LOG] 채팅 웹 소켓 로그 추가 * [FEAT] ChatRoom User 매핑 테이블 구현 * [REFACT] 채팅방 ID UUID 타입 변경 * [REFACT] 채팅방 생성 로직 추가 * [REFACT] 채팅방 조회 검증 로직 리펙토링 * [REFACT] 채팅방 리스트 페이지네이션 적용 및 쿼리 최적화 * [RENAME] `projectJoinRequestRes` -> `ProjectJoinRequestRes` * [FEAT] flyway V2 추가 * [REFACT] 채팅방 리스트 조회 로직 변경 --------- Co-authored-by: happyjamy <[email protected]> Co-authored-by: JIN-076 <[email protected]>
- Loading branch information
1 parent
772f66e
commit bde6dfe
Showing
29 changed files
with
369 additions
and
220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
services: | ||
mogakgo-db: | ||
image: mysql:8.2.0 | ||
container_name: mogakgo-mysql | ||
environment: | ||
MYSQL_ROOT_PASSWORD: root! | ||
MYSQL_DATABASE: mogakgo | ||
ports: | ||
- "3306:3306" | ||
mogakgo-redis: | ||
image: redis:latest | ||
container_name: mogakgo-redis | ||
ports: | ||
- "6379:6379" | ||
mogakgo-mongodb: | ||
image: mongo:latest | ||
container_name: mogakgo-mongodb | ||
environment: | ||
MONGI_INIT_DATABSE: mogakgo | ||
ports: | ||
- "27017:27017" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 0 additions & 11 deletions
11
src/main/java/io/oeid/mogakgo/domain/chat/application/dto/req/ChatRoomCreateReq.java
This file was deleted.
Oops, something went wrong.
30 changes: 0 additions & 30 deletions
30
src/main/java/io/oeid/mogakgo/domain/chat/application/dto/res/ChatRoomCreateRes.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.