- docs/SCREENSHOTS.md: 전체 22개 화면 스크린샷 문서 - README.md: 스크린샷 문서 + Notion 진행상황 링크 추가 - Notion: 진행상황 페이지에 E2E 테스트, 테스터 계정, 전체 스크린샷, 개발 현황 요약 추가 - e2e/helpers/screenshots.js: 자동 스크린샷 캡처 스크립트 - .gitignore: docs/ 허용 (docs/local/ 만 제외) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
176 lines
2.5 KiB
Plaintext
176 lines
2.5 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
|
|
|
|
#-------------------------
|
|
# 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
|