- Add batch inspection backend (multipart upload, SSE streaming, MongoDB)
- Add tabbed UI (single page / site crawling / batch upload) on home and history pages
- Add batch inspection progress, result pages with 2-panel layout
- Rename "사이트 전체" to "사이트 크롤링" across codebase
- Add python-multipart dependency for file upload
- Consolidate nginx SSE location for all inspection types
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
SSE complete event now removes the cached siteInspection query data
so the result page fetches fresh data with aggregate_scores from API.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- 리로드 시 API에서 현재 상태를 조회하여 스토어 복원 (initFromApi)
- SITE_CONCURRENCY 서버 상한 4→8로 변경 (사용자 설정 8이 제대로 동작)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- 기본값 2→4로 변경, 사용자가 [1, 2, 4, 8] 중 선택 가능
- 백엔드: concurrency 파라미터 추가 (API → 서비스 → Semaphore)
- 프론트: 드롭다운에 "동시 검사 수" 옵션 UI 추가
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1. SSE page_complete 이벤트 필드명 score→overall_score 불일치 수정
(진행 페이지에서 각 페이지별 점수가 표시되지 않던 버그)
2. 진행 페이지 재방문 시 완료된 검사는 결과 대시보드로 자동 리다이렉트
3. 카테고리 상세(이슈 목록)를 인라인으로 표시하여 트리 사이드바 유지
(이전: 별도 페이지로 이동하여 트리가 사라지는 문제)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
도메인 하위 링크를 BFS로 자동 크롤링하여 페이지별 검사 수행.
- BFS 링크 크롤러 (같은 도메인 필터링, max_pages/max_depth 설정)
- 사이트 검사 오케스트레이션 (크롤링→순차 검사→집계)
- SSE 실시간 진행 상태 (크롤링/검사/완료)
- 페이지 트리 + 집계 결과 UI
- UrlInputForm에 "사이트 전체 검사" 버튼 추가
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- YAML 규칙 파일 4개 신규 생성 (html_css, accessibility, seo, performance_security)
W3C, WCAG 2.0/2.1/2.2, OWASP, Google Search Essentials 공식 표준 기반
- rules/__init__.py: YAML 로더 + 캐싱 + 리로드 모듈
- html_css.py: 30개 폐기 요소, 100+개 폐기 속성을 YAML에서 동적 로드
- accessibility.py: WCAG 버전 선택 지원 (wcag_version 파라미터)
- seo.py: title/description 길이, OG 필수 태그 등 임계값 YAML 로드
- performance_security.py: COOP/COEP/CORP 검사 추가, 정보 노출 헤더 검사 추가,
TTFB/페이지 크기 임계값 YAML 로드
- PyYAML 의존성 추가
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- NEXT_PUBLIC_API_URL을 same-origin(빈값)으로 변경 (Nginx 리버스 프록시 사용)
- Nginx 설정 추가 (SSE 버퍼링 OFF, API/Frontend 프록시)
- Dockerfile, docker-compose.yml 업데이트
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>