28 lines
298 B
Plaintext
28 lines
298 B
Plaintext
# Python cache files
|
||
__pycache__/
|
||
*.pyc
|
||
*.pyo
|
||
*.pyd
|
||
|
||
# Virtual environment folders
|
||
env/
|
||
venv/
|
||
|
||
# Git files
|
||
.git/
|
||
.gitignore
|
||
|
||
# Editor files
|
||
.vscode/
|
||
.idea/
|
||
|
||
# Tests and docs if you don’t need them in the image
|
||
tests/
|
||
docs/
|
||
|
||
# OS files
|
||
.DS_Store
|
||
|
||
# Environment files (sometimes used locally)
|
||
.env
|