kt-event-marketing/verify-service.sh
merrycoral 95a419f104 Event 엔티티에 참여자 및 ROI 필드 추가 및 Frontend-Backend 통합
🔧 Backend 변경사항:
- Event 엔티티에 participants, targetParticipants, roi 필드 추가
- EventDetailResponse DTO 및 EventService 매퍼 업데이트
- ROI 자동 계산 비즈니스 로직 구현
- SecurityConfig CORS 설정 추가 (localhost:3000 허용)

🎨 Frontend 변경사항:
- TypeScript EventDetail 타입 정의 업데이트
- Events 페이지 실제 API 데이터 연동 (Mock 데이터 제거)
- 참여자 수 및 ROI 기반 통계 계산 로직 개선

📝 문서:
- Event 필드 추가 및 API 통합 테스트 결과서 작성

 테스트 완료:
- Backend API 응답 검증
- CORS 설정 검증
- Frontend-Backend 통합 테스트 성공

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-29 13:23:09 +09:00

26 lines
701 B
Bash
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
echo "================================"
echo "Event Service 확인 중..."
echo "================================"
sleep 3
echo ""
echo "1⃣ 프로세스 확인"
jps -l | grep EventServiceApplication && echo "✅ 프로세스 실행 중" || echo "❌ 프로세스 없음"
echo ""
echo "2⃣ 포트 8082 확인"
netstat -ano | findstr ":8082" | findstr "LISTENING" && echo "✅ 8082 포트 리스닝" || echo "❌ 8082 포트 리스닝 안됨"
echo ""
echo "3⃣ Health Check"
curl -s http://localhost:8082/actuator/health 2>&1 | head -10
echo ""
echo "4⃣ 최근 로그 (마지막 15줄)"
tail -15 logs/event-service.log
echo ""
echo "================================"