66 lines
689 B
Plaintext
66 lines
689 B
Plaintext
# Git files
|
|
.git
|
|
.github
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Documentation
|
|
*.md
|
|
README*
|
|
CHANGELOG*
|
|
LICENSE*
|
|
|
|
# Build scripts (not needed in container)
|
|
build-docker*.ps1
|
|
build-docker*.sh
|
|
|
|
# Environment and credential files (SECURITY)
|
|
.env
|
|
.env.*
|
|
*.env
|
|
.env.local
|
|
.env.production
|
|
.env.development
|
|
*.secrets
|
|
credentials.txt
|
|
passwords.txt
|
|
*.key
|
|
*.pem
|
|
*.crt
|
|
*.pfx
|
|
|
|
# IDE and editor files
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Build artifacts
|
|
*.log
|
|
*.tmp
|
|
.docker-build/
|
|
dist/
|
|
build/
|
|
out/
|
|
|
|
# Test files
|
|
test/
|
|
tests/
|
|
*.test.js
|
|
*.spec.js
|
|
|
|
# CI/CD files
|
|
.github/
|
|
.gitlab-ci.yml
|
|
.travis.yml
|
|
Jenkinsfile
|
|
|
|
# Docker files (we only need Dockerfile)
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# Claude Code
|
|
.claude/
|