30 lines
226 B
Plaintext
30 lines
226 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Documentation
|
|
*.md
|
|
docs/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.log
|
|
|
|
# Cache
|
|
.cache/
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log*
|
|
|
|
# Build artifacts
|
|
build/
|
|
dist/
|
|
target/ |