29 lines
245 B
Plaintext
29 lines
245 B
Plaintext
# Python cache
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Data directory (will be mounted as volume)
|
|
data/
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Documentation
|
|
README.md
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Other
|
|
*.log
|
|
.DS_Store
|