Skip to content
This repository was archived by the owner on Jan 11, 2026. It is now read-only.
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
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
if [[ "$ENV_COLOR" == "blue" || "$ENV_COLOR" == "none" ]]; then
# 블루 서버가 실행 중이거나 아무 서버도 돌아가고 있지 않다면 그린 서버를 실행
sudo docker-compose -f docker-compose.yml up -d --no-deps web-green
sleep 45
sleep 75
# 그린 서버가 정상적으로 작동하는지 확인 (예: HTTP 상태 코드 200 확인)
if curl --silent --fail http://localhost:8081; then
echo "Green server is working correctly."
Expand All @@ -75,7 +75,7 @@ jobs:
elif [[ "$ENV_COLOR" == "green" ]]; then
# 그린 서버가 실행 중이면 블루 서버를 실행
sudo docker-compose -f docker-compose.yml up -d --no-deps web-blue
sleep 45
sleep 75
# 블루 서버가 정상적으로 작동하는지 확인
if curl --silent --fail http://localhost:8080; then
echo "Blue server is working correctly."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ public class SearchController {
## [메인 화면] 접속한 회원의 추천 스터디 3개를 조회 합니다.
조회된 스터디 3개의 정보가 반환 됩니다.""",
security = @SecurityRequirement(name = "accessToken"))
@Parameter(name = "memberId", description = "조회할 유저의 ID를 입력 받습니다.", required = true)
public ApiResponse<StudyPreviewDTO> recommendStudiesForMain() {
StudyPreviewDTO recommendStudies = studyQueryService.findRecommendStudies(SecurityUtils.getCurrentUserId());
return ApiResponse.onSuccess(SuccessStatus._STUDY_FOUND, recommendStudies);
Expand All @@ -68,7 +67,6 @@ public ApiResponse<StudyPreviewDTO> interestedStudiesForMain() {
## [마이 페이지] 마이 페이지에 들어갈 나와 관련된 스터디 갯수 정보를 조회합니다.
스터디 갯수 정보와 내 이름이 반환 됩니다.""",
security = @SecurityRequirement(name = "accessToken"))
@Parameter(name = "memberId", description = "조회할 유저의 ID를 입력 받습니다.", required = true)
public ApiResponse<MyPageDTO> myPage() {
MyPageDTO myPageStudyCount = studyQueryService.getMyPageStudyCount(SecurityUtils.getCurrentUserId());
return ApiResponse.onSuccess(SuccessStatus._STUDY_FOUND, myPageStudyCount);
Expand Down
Loading