- frontend: React 19 + Vite 7 + Leaflet + Tailwind + Zustand - backend: Express + better-sqlite3 + TypeScript - database: PostgreSQL 초기화 스크립트 - .gitignore: 대용량 참고자료(scat, 참고용) 및 바이너리 파일 제외 - .env.example: API 키 템플릿 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
67 lines
929 B
Plaintext
Executable File
67 lines
929 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/
|
|
|
|
# Lock files (keep for reproducible builds)
|
|
!frontend/package-lock.json
|
|
!backend/package-lock.json
|