리뷰어가 호스트에서 backend/data/ 가 untracked 로 잡힌 걸 발견. LGBM 체크포인트는 런타임 산출물이라 커밋되면 안 됨. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
42 lines
436 B
Plaintext
42 lines
436 B
Plaintext
# Env / secrets
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
.Python
|
|
.venv/
|
|
venv/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Models / artifacts (downloaded HF caches, trained LGBM)
|
|
backend/artifacts/
|
|
backend/.cache/
|
|
backend/data/
|
|
.huggingface/
|
|
|
|
# Node
|
|
node_modules/
|
|
.next/
|
|
out/
|
|
*.tsbuildinfo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker volumes mounted locally
|
|
postgres_data/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|