AI 서비스 재시작 스크립트 개선 및 STT 서비스 수정

- AI 서비스 reload 설정 비활성화 (포트 충돌 방지)
- start.sh 삭제 및 restart.sh로 대체
- STT 서비스 로깅 및 WebSocket 핸들러 개선
- 회의 안건 섹션 마이그레이션 SQL 추가

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Minseo-Jo
2025-10-29 10:51:19 +09:00
parent c9d24ce1af
commit 92c18f71c0
8 changed files with 96914 additions and 37 deletions
@@ -32,6 +32,9 @@ public class AzureSpeechService {
@PostConstruct
public void init() {
try {
log.info("Azure Speech Service 초기화 시작 - subscriptionKey: {}, region: {}",
subscriptionKey != null && !subscriptionKey.trim().isEmpty() ? "설정됨" : "미설정", region);
if (subscriptionKey == null || subscriptionKey.trim().isEmpty()) {
log.warn("Azure Speech Subscription Key 미설정 - 시뮬레이션 모드로 실행");
return;