Files
hyungi_document_server/.gitignore
T
hyungi f17d58f992 chore(gitignore): host venv + 백업/롤백 스냅샷 패턴 추가
.venv/ (host venv, 76M), *.bak / *.pre-* / .pre-*/ (작업 전 백업).
git history가 source of truth이므로 working tree 백업은 ignore.
2026-05-15 04:46:26 +00:00

50 lines
669 B
Plaintext

# 인증 정보 (절대 커밋 금지)
credentials.env
.env
# Python
venv/
__pycache__/
*.pyc
*.pyo
*.egg-info/
dist/
build/
# 로그
logs/
# 데이터 (법령 다운로드 등)
data/
# eval/calibration 실행 결과 (baseline jsonl 등)
# reports/ 는 이미 tracked 파일 있음 → 전체 ignore 하지 않음
results/
artifacts/
# macOS
.DS_Store
._*
# IDE
.vscode/
.idea/
# Node.js (frontend, kordoc)
node_modules/
.svelte-kit/
# Docker volumes
pgdata/
caddy_data/
# Host venv (run_eval 등 host에서 실행)
.venv/
# 작업 전 백업 / 롤백 스냅샷 (working tree only, git history 보존이 source of truth)
*.bak
*.bak-*
*.bak_*
*.pre-*
.pre-*/