# 환경 / 키 (민감) — 절대 커밋 금지
.env
.env.local
*.key
*.pem

# Python
.venv/
.venv-*/
venv/
__pycache__/
*.pyc
*.pyo
*.egg-info/
.pytest_cache/
.mypy_cache/
.ruff_cache/

# OS / 에디터
.DS_Store
Thumbs.db
.idea/
.vscode/

# 평가 산출물 (재생성 가능)
data/training/*.jsonl
data/training/*.json
data/training/*.csv
data/training/*.xlsx
!data/training/.gitkeep

# 사용자 업로드 자서전 (개인정보) — 샘플 외 제외
data/reference/autobio-*.txt
data/reference/corpus-*.txt

# 운영 원고·인덱스·학습 모델 (서버 볼륨에만 저장)
data/input/
data/runtime/
data/models/
data/life_writing/
*.joblib

# 시각화 리포트 — PNG/MD 함께 보존 (재생성도 가능)

# 로그
*.log
logs/

# Hugging Face 모델 캐시
.cache/
~/.cache/huggingface/

# 원문(개인 자서전 본문)이 담긴 산출물은 저장소에 두지 않는다.
# 필요하면 scripts/extract_suspected_excerpts.py 로 킹서버 코퍼스에서 다시 뽑는다.
reports/excerpts_*.jsonl
reports/침해판별_원문대조_*.xlsx
reports/침해판별_의심건검토_*.xlsx
