feat: 3-mode inspection with tabbed UI + batch upload

- 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>
This commit is contained in:
jungwoo choi
2026-02-13 19:15:27 +09:00
parent 9bb844c5e1
commit 8326c84be9
32 changed files with 3700 additions and 61 deletions

View File

@ -26,6 +26,10 @@ class Settings(BaseSettings):
SITE_MAX_DEPTH: int = 2
SITE_CONCURRENCY: int = 8
# Batch inspection
BATCH_MAX_URLS: int = 200
BATCH_CONCURRENCY: int = 8
# Application
PROJECT_NAME: str = "Web Inspector API"