55 lines
599 B
Plaintext
55 lines
599 B
Plaintext
# Byte-compiled / optimized / DLL files
|
||
__pycache__/
|
||
*.py[cod]
|
||
*$py.class
|
||
|
||
# Virtual environments
|
||
.venv/
|
||
env/
|
||
venv/
|
||
|
||
# VSCode settings
|
||
.vscode/
|
||
|
||
# macOS and Linux system files
|
||
.DS_Store
|
||
Thumbs.db
|
||
|
||
# Docker-related
|
||
*.log
|
||
*.pid
|
||
*.tar
|
||
*.sock
|
||
|
||
# Ignore test output or temporary files
|
||
*.tmp
|
||
*.bak
|
||
*.swp
|
||
|
||
# Python artifacts
|
||
*.egg-info/
|
||
*.egg
|
||
dist/
|
||
build/
|
||
|
||
# PyInstaller
|
||
*.spec
|
||
|
||
# Coverage reports
|
||
htmlcov/
|
||
.coverage
|
||
.cache
|
||
nosetests.xml
|
||
coverage.xml
|
||
*.cover
|
||
|
||
# MyPy
|
||
.mypy_cache/
|
||
|
||
# Presets and data you don’t want in Git
|
||
presets/
|
||
data/
|
||
|
||
# Frontend build output (optional if using React)
|
||
frontend/build/
|