Files
2026-01-14 21:05:31 +08:00

60 lines
481 B
Plaintext

# Git
.git
.gitignore
.gitattributes
# Python
__pycache__
*.py[cod]
*$py.class
*.so
.Python
*.egg-info
dist/
build/
*.egg
# Virtual environments
venv/
env/
ENV/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Build artifacts
Dockerfile
*.log
# Documentation
docs/
*.md
!README.md
# CI/CD (don't include in Docker context)
.github/
# Test files
tests/
test/
*.test.js
*.spec.js
# Development
.env
.env.local
.env.*.local
# Temporary files
tmp/
temp/
*.tmp