- 사용자 매뉴얼: league/commonmark 기반 bag/manual(로그인 전용), ManualRenderer + Config\Manual manifest, 콘텐츠 8종, E2E - 번호알기(봉투번호확인): bag/number-lookup, BagNumberLookup, E2E - gov-portal 대시보드 시안(기본/strip)·기본코드관리 화면 - 메뉴 관리: 등록·수정 후 메뉴 화면 유지, 수정 버튼 클릭 시 상단 스크롤 - 수불/분석 리포트(LOT 수불·반품/파기·수급계획·추이) 표시 보강 - .gitignore: docs/ → /docs/ 앵커링(최상위 개발문서만 제외, app/Docs는 추적) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
179 lines
2.6 KiB
Plaintext
179 lines
2.6 KiB
Plaintext
#-------------------------
|
|
# Operating Specific Junk Files
|
|
#-------------------------
|
|
|
|
# OS X
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
# OS X Thumbnails
|
|
._*
|
|
|
|
# Windows image file caches
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
|
|
# Recycle Bin used on file shares
|
|
$RECYCLE.BIN/
|
|
|
|
# Windows Installer files
|
|
*.cab
|
|
*.msi
|
|
*.msm
|
|
*.msp
|
|
|
|
# Windows shortcuts
|
|
*.lnk
|
|
|
|
# Linux
|
|
*~
|
|
|
|
# KDE directory preferences
|
|
.directory
|
|
|
|
# Linux trash folder which might appear on any partition or disk
|
|
.Trash-*
|
|
|
|
#-------------------------
|
|
# Environment Files
|
|
#-------------------------
|
|
# These should never be under version control,
|
|
# as it poses a security risk.
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
.env.production
|
|
.env.staging
|
|
.env.backup
|
|
*.env.backup
|
|
!.env.example
|
|
.vagrant
|
|
Vagrantfile
|
|
|
|
#-------------------------
|
|
# Local docs & MCP (저장소에 올리지 않음)
|
|
#-------------------------
|
|
docs/local/
|
|
mcp-servers/
|
|
|
|
# Cursor MCP — API 키·로컬 경로 등 포함 가능
|
|
.cursor/mcp.json
|
|
|
|
#-------------------------
|
|
# Secrets & credentials (보안)
|
|
#-------------------------
|
|
*.pem
|
|
*.key
|
|
*.p12
|
|
*.pfx
|
|
*.crt
|
|
*.cer
|
|
*.keystore
|
|
*.jks
|
|
id_rsa
|
|
id_rsa.pub
|
|
id_ed25519
|
|
id_ed25519.pub
|
|
secrets/
|
|
credentials/
|
|
*.secret
|
|
auth.json
|
|
.aws/credentials
|
|
.netrc
|
|
|
|
#-------------------------
|
|
# Temporary Files
|
|
#-------------------------
|
|
writable/cache/*
|
|
!writable/cache/index.html
|
|
|
|
writable/logs/*
|
|
!writable/logs/index.html
|
|
|
|
writable/session/*
|
|
!writable/session/index.html
|
|
|
|
writable/uploads/*
|
|
!writable/uploads/index.html
|
|
|
|
writable/debugbar/*
|
|
!writable/debugbar/index.html
|
|
|
|
php_errors.log
|
|
deploy.log
|
|
|
|
#-------------------------
|
|
# User Guide Temp Files
|
|
#-------------------------
|
|
user_guide_src/build/*
|
|
user_guide_src/cilexer/build/*
|
|
user_guide_src/cilexer/dist/*
|
|
user_guide_src/cilexer/pycilexer.egg-info/*
|
|
|
|
#-------------------------
|
|
# Test Files
|
|
#-------------------------
|
|
tests/coverage*
|
|
|
|
# Don't save phpunit under version control.
|
|
phpunit
|
|
|
|
#-------------------------
|
|
# Composer
|
|
#-------------------------
|
|
vendor/
|
|
|
|
#-------------------------
|
|
# IDE / Development Files
|
|
#-------------------------
|
|
|
|
# Modules Testing
|
|
_modules/*
|
|
|
|
# phpenv local config
|
|
.php-version
|
|
|
|
# Jetbrains editors (PHPStorm, etc)
|
|
.idea/
|
|
*.iml
|
|
|
|
# NetBeans
|
|
/nbproject/
|
|
/build/
|
|
/nbbuild/
|
|
/dist/
|
|
/nbdist/
|
|
/nbactions.xml
|
|
/nb-configuration.xml
|
|
/.nb-gradle/
|
|
|
|
# Sublime Text
|
|
*.tmlanguage.cache
|
|
*.tmPreferences.cache
|
|
*.stTheme.cache
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
.phpintel
|
|
/api/
|
|
|
|
# Visual Studio Code
|
|
.vscode/
|
|
|
|
# Claude Code
|
|
.claude/
|
|
|
|
# Node.js
|
|
node_modules/
|
|
|
|
# Playwright
|
|
playwright-report/
|
|
test-results/
|
|
blob-report/
|
|
|
|
/results/
|
|
/phpunit*.xml
|
|
# 최상위 개발 문서/스크린샷 폴더만 제외 (app/Docs 등 하위 docs 경로는 추적).
|
|
/docs/
|