Python용 lib/ 무시 규칙이 wwwroot/lib 까지 잡아 vendoring 라이브러리가 미추적이던 문제 수정. clone 시 마크다운 렌더 등이 동작하도록 추적 전환. - 신규: marked, dompurify, highlight.js(+테마), katex(js/css/auto-render+woff2 20), mermaid (문서 탐색기 의존) - 기존 누락분 동반 추적: uPlot.iife.min.js, uPlot.min.css - .gitignore: !src/Web/wwwroot/lib/ 예외 추가 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
68 lines
686 B
Plaintext
68 lines
686 B
Plaintext
# Build outputs
|
|
bin/
|
|
obj/
|
|
|
|
# IDE
|
|
.vs/
|
|
.vscode/
|
|
*.suo
|
|
*.user
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Certificates (sensitive)
|
|
*.pfx
|
|
*.p12
|
|
|
|
# Data files
|
|
data/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.log
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual Environment
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# IDE
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ipynb_checkpoints/
|
|
|
|
# KB 업로드 원본 파일 (런타임 데이터)
|
|
storage/
|
|
|
|
# wwwroot 프론트 라이브러리는 추적 (위 Python용 lib/ 규칙의 예외)
|
|
!src/Web/wwwroot/lib/
|
|
!src/Web/wwwroot/lib/**
|