38 lines
413 B
Plaintext
38 lines
413 B
Plaintext
# Python cache files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
lib64/
|
|
*.egg-info/
|
|
|
|
# Git and other VCS
|
|
.git/
|
|
.gitignore
|
|
|
|
# Local logs and temp files
|
|
*.log
|
|
*.tmp
|
|
*.swp
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Node / frontend artifacts (if any)
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
|
|
# IDE / editor files
|
|
.vscode/
|
|
.idea/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# Ignore Dockerfile copies / backups
|
|
Dockerfile.*
|