- .claude/rules: 팀 정책, git 워크플로우, 코드 스타일, 네이밍, 테스트 규칙 - .claude/skills: push, mr, release, create-mr, fix-issue, init-project, sync-team-workflow - .claude/settings.json: 프로젝트 레벨 권한 설정 - .githooks: commit-msg, pre-commit(모노레포), post-checkout - .editorconfig, .npmrc, .prettierrc, .node-version Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
69 lines
981 B
Plaintext
Executable File
69 lines
981 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
|