- prediction: G-01/G-04/G-05/G-06 위반 분류 + 쌍끌이 공조 탐지 추가 - backend: 모선 확정/제외 API + signal-batch 항적 프록시 + ParentResolution 점수 근거 필드 확장 - frontend: 어구 탐지 그리드 다중필터/지도 flyTo, 후보 검토 패널(점수 근거+확정/제외), 24h convex hull 리플레이 + TripsLayer 애니메이션 - gitignore: 루트 .venv/ 추가
81 lines
1.3 KiB
Plaintext
81 lines
1.3 KiB
Plaintext
# === Build ===
|
|
frontend/dist/
|
|
frontend/build/
|
|
backend/target/
|
|
backend/build/
|
|
|
|
# === Python (prediction) ===
|
|
.venv/
|
|
prediction/.venv/
|
|
prediction/__pycache__/
|
|
prediction/**/__pycache__/
|
|
prediction/*.pyc
|
|
prediction/.env
|
|
|
|
# === Dependencies ===
|
|
frontend/node_modules/
|
|
node_modules/
|
|
|
|
# === IDE ===
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# === OS ===
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# === Environment ===
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
# 프론트엔드 환경 예시 (.env.example만 커밋)
|
|
!frontend/.env.example
|
|
secrets/
|
|
|
|
# === Debug ===
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# === Test ===
|
|
frontend/coverage/
|
|
backend/coverage/
|
|
|
|
# === Cache ===
|
|
frontend/.eslintcache
|
|
frontend/.prettiercache
|
|
frontend/*.tsbuildinfo
|
|
frontend/.vite/
|
|
.vite/
|
|
|
|
# === Code Review Graph (로컬 전용) ===
|
|
.code-review-graph/
|
|
|
|
# === 대용량/참고 문서 ===
|
|
*.hwpx
|
|
*.docx
|
|
|
|
# === Claude Code ===
|
|
!.claude/
|
|
.claude/settings.local.json
|
|
.claude/CLAUDE.local.md
|
|
|
|
# === Team workflow (managed by /sync-team-workflow) ===
|
|
.claude/rules/
|
|
.claude/agents/
|
|
.claude/skills/push/
|
|
.claude/skills/mr/
|
|
.claude/skills/create-mr/
|
|
.claude/skills/release/
|
|
.claude/skills/version/
|
|
.claude/skills/fix-issue/
|
|
.claude/scripts/
|
|
|
|
# === Backend (Spring Boot) ===
|
|
backend/.mvn/wrapper/maven-wrapper.jar
|
|
backend/.gradle/
|
|
backend/HELP.md
|
|
backend/*.log
|