43 lines
404 B
Plaintext
43 lines
404 B
Plaintext
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Python cache
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Documentation (not needed in container)
|
|
*.md
|
|
wiki/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Docker
|
|
docker-compose.yml
|
|
Dockerfile
|
|
|
|
# Output files (generated during build)
|
|
# *.png
|
|
# *.gv
|