46 lines
454 B
Plaintext
46 lines
454 B
Plaintext
proto/
|
|
# Virtual environments
|
|
.venv/
|
|
|
|
# Poetry dependencies
|
|
poetry.lock
|
|
|
|
# IDE / Editor files
|
|
*.swp
|
|
*.swo
|
|
*.pyc
|
|
__pycache__/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# Logs and databases
|
|
logs/
|
|
*.log
|
|
|
|
# Environment variables (optional, wenn nicht in .env.example)
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.cache/
|
|
nosetests.xml
|
|
coverage.xml
|
|
|
|
|
|
# PyInstaller
|
|
build/
|
|
dist/
|
|
|
|
|
|
# pytest cache
|
|
.pytest_cache/
|