23 lines
263 B
Plaintext
23 lines
263 B
Plaintext
# Python / local tooling
|
|
__pycache__/
|
|
*.py[cod]
|
|
.venv/
|
|
venv/
|
|
*.egg-info/
|
|
build/
|
|
dist/
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.idea/
|
|
.DS_Store
|
|
|
|
# Local configuration and key material must never be committed.
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.pem
|
|
*.key
|
|
keystore/
|