Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hotfix: 모든인원이 다 작성했을 때, 회고마감 처리 오류 해결 #232

Merged
merged 2 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 24 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,22 @@
<th> BE </th>
<tr>
<td>
- CI/CD 구축<br>
- CI/CD 및 k3s 구축<br>
- 회고 스페이스, 멤버 관련 기능 구현 <br>
- PreSignedUrl 구현 및 이미지 통신 구축<br>
- Cloud 로그 시스템 적용 및 NCP 인프라 구축
</td>
<td>
- 프로젝트 세팅
- 멀티모듈 설계 및 프로젝트 세팅<br>
- 회고, 회고 질문 & 답변, 분석 관련 기능 구현<br>
- 회고마감 관련 배치 모듈 구현<br>
- OpenAI 통신 파이프라인 구축<br>
</td>
<td>
- 인증/인가 필터 구현
- 인증/인가 필터 구현<br>
- OAuth2.0 구현<br>
- 회고 템플릿, 실행 목표, 회원 관련 기능 구현<br>
- Redis 적용<br>
</td>
</tr>
</table>
Expand All @@ -35,6 +44,18 @@
<br>
<br>

## 🏭 아키텍처

![layer-arch](https://github.com/user-attachments/assets/f3811440-ba52-4aea-a5a2-b38d5c2d70fa)

## 🧑‍🏭 기술스택
- Java 17
- Spring boot 3.3.1
- Docker, k3s
- MySQL
- Redis
- NCP Server, NCP storage, Cloud Log Analytics

## 🤝 협업

1. 이슈를 생성한다.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ public void create(AnswerListCreateRequest request, Long spaceId, Long retrospec
if (answers.getWriteCount(retrospectId) == team.getTeamMemberCount()){
retrospect.updateRetrospectStatus(RetrospectStatus.DONE, time.now());
retrospect.updateAnalysisStatus(AnalysisStatus.PROCEEDING);
retrospectRepository.saveAndFlush(retrospect);

aiAnalyzeService.createAnalyze(spaceId, retrospectId, answers.getWriteMemberIds());
}
Expand Down
Loading