3db351002c
JWT_SECRET 빈값이면 부팅 RuntimeError (구: 빈 키로 전 토큰 서명하며 침묵 부팅 = 인증붕괴). core.utils setup_logger FileHandler→RotatingFileHandler(10MB×3) — logs 무한증가 차단. .gitignore *.sqlite3 + 0바이트 db.sqlite3 제거. Phase 2A/2B closed eval override 2파일 git rm (참조 0, history 보존). lockfile 은 제외(별도). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
53 lines
732 B
Plaintext
53 lines
732 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-*/
|
|
|
|
# SQLite 로컬 아티팩트 (Django/툴링 잔재)
|
|
*.sqlite3
|