6개 대형 View(AerialView, AssetsView, ReportsView, PreScatView, AdminView, LeftPanel)를 서브탭 단위로 분할하여 모듈 경계를 명확히 함. - AerialView (2,526줄 → 8파일): MediaManagement, OilAreaAnalysis, RealtimeDrone 등 - AssetsView (2,047줄 → 8파일): AssetManagement, AssetMap, ShipInsurance 등 - ReportsView (1,596줄 → 5파일): TemplateFormEditor, ReportGenerator 등 - PreScatView (1,390줄 → 7파일): ScatLeftPanel, ScatMap, ScatPopup 등 - AdminView (1,306줄 → 7파일): UsersPanel, PermissionsPanel, MenusPanel 등 - LeftPanel (1,237줄 → 5파일): PredictionInputSection, InfoLayerSection, OilBoomSection 등 FEATURE_ID 레지스트리(common/constants/featureIds.ts) 및 감사로그 서브탭 추적 훅(useFeatureTracking) 추가. .gitignore의 scat/ → /scat/ 수정 (scat 탭 파일 추적 누락 수정) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
69 lines
982 B
Plaintext
Executable File
69 lines
982 B
Plaintext
Executable File
# Dependencies
|
|
node_modules/
|
|
|
|
# Build output
|
|
dist/
|
|
dist-ssr/
|
|
|
|
# Environment variables (use .env.example as template)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Database files
|
|
backend/data/*.db
|
|
backend/data/*.db-shm
|
|
backend/data/*.db-wal
|
|
|
|
# Large reference data (keep locally, do not commit)
|
|
_reference/
|
|
/scat/
|
|
참고용/
|
|
논문/
|
|
|
|
# Binary / archive files
|
|
*.pdf
|
|
*.xlsx
|
|
*.xlsm
|
|
*.hwpx
|
|
*.tar.gz
|
|
*.zip
|
|
*.gif
|
|
|
|
# HTML mockup / report files
|
|
방제과개선안_*.html
|
|
meris_*.html
|
|
|
|
# Source archive (regenerate from repo)
|
|
wing-frontend-src.zip
|
|
wing_source_*.tar.gz
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# HNS manual images (large binary)
|
|
frontend/public/hns-manual/pages/
|
|
frontend/public/hns-manual/images/
|
|
|
|
# Claude Code (team workflow tracked, override global gitignore)
|
|
!.claude/
|
|
.claude/settings.local.json
|
|
.claude/CLAUDE.local.md
|
|
|
|
# Lock files (keep for reproducible builds)
|
|
!frontend/package-lock.json
|
|
!backend/package-lock.json
|