diff --git a/README.md b/README.md index 73ed012..7e7178f 100644 --- a/README.md +++ b/README.md @@ -54,8 +54,6 @@ http://localhost:8080/swagger-ui.html - [10. 트러블슈팅](#10-트러블슈팅) - [11. 개발 참고 자료](#11-개발-참고-자료) - [12. 팀](#12-팀) -- [13. 라이선스](#13-라이선스) -- [14. 문의](#14-문의) --- @@ -95,8 +93,8 @@ KT AI 기반 소상공인 이벤트 자동 생성 서비스는 고객 유치와 - [프론트엔드 설계](https://gitea.cbiz.kubepia.net/shared-dg05-dodari/kt-event-marketing/src/branch/main/design/frontend/) - **Git Repository**: - **사내 통합 저장소**: https://gitea.cbiz.kubepia.net/shared-dg05-dodari/kt-event-marketing - - **백엔드 (GitHub)**: https://github.com/ktds-dg0501/kt-event-marketing.git - - **프론트엔드 (GitHub)**: https://github.com/ktds-dg0501/kt-event-marketing-fe.git + - **백엔드 (GitHub)**: https://gitea.cbiz.kubepia.net/shared-dg05-dodari/kt-event-marketing.git + - **프론트엔드 (GitHub)**: https://gitea.cbiz.kubepia.net/shared-dg05-dodari/kt-event-marketing-fe.git - **K8s Manifest**: {Manifest Repo} - **시연 동영상**: {시연 동영상 링크} @@ -167,15 +165,15 @@ kt-event-marketing/ ### 3.2 마이크로서비스 구성 -| 서비스 | 포트 | 설명 | API Path | +| 서비스 | 포트 | 설명 | API Path | |--------|------|------|----------| | **user-service** | 8081 | 사용자 인증 및 회원 관리 | /api/v1/users | | **event-service** | 8080 | 이벤트 생성 및 관리, 스케줄링 | /api/v1/events, /api/v1/jobs | -| **content-service** | 8085 | AI 기반 콘텐츠 생성 (이미지, 텍스트) | /api/v1/content | +| **content-service** | 8084 | AI 기반 콘텐츠 생성 (이미지, 텍스트) | /api/v1/content | | **ai-service** | 8083 | AI 이벤트 추천 및 분석 | /api/v1/ai-service | | **participation-service** | 8084 | 이벤트 참여자 관리 및 당첨자 추첨 | /api/v1/participations, /api/v1/winners | | **analytics-service** | 8086 | 이벤트 및 사용자 통계 분석 | /api/v1/events/.../analytics, /api/v1/users/.../analytics | -| **distribution-service** | 8087 | 다채널 이벤트 배포 | /api/v1/distribution | +| **distribution-service** | 8085 | 다채널 이벤트 배포 | /api/v1/distribution | ### 4.3 기술 스택 - **백엔드**: @@ -364,7 +362,7 @@ curl http://localhost:8081/actuator/health curl http://localhost:8080/actuator/health # Content Service Health Check -curl http://localhost:8085/health +curl http://localhost:8084/health # AI Service Health Check curl http://localhost:8083/actuator/health @@ -376,7 +374,7 @@ curl http://localhost:8084/actuator/health curl http://localhost:8086/actuator/health # Distribution Service Health Check -curl http://localhost:8087/actuator/health +curl http://localhost:8085/actuator/health ``` #### 4.3.4 API 문서 확인 @@ -384,9 +382,10 @@ curl http://localhost:8087/actuator/health - User Service: http://localhost:8081/swagger-ui.html - Event Service: http://localhost:8080/swagger-ui.html - AI Service: http://localhost:8083/swagger-ui.html +- Content Service: http://localhost:8084/swagger-ui.html - Participation Service: http://localhost:8084/swagger-ui.html - Analytics Service: http://localhost:8086/swagger-ui.html -- Distribution Service: http://localhost:8087/swagger-ui.html +- Distribution Service: http://localhost:8085/swagger-ui.html ## 5. Docker 컨테이너 빌드 및 실행