Add a baseline .gitignore for docker-service local development artifacts.
This keeps virtualenv files, Python caches, logs, and local env files out of version control.
This commit is contained in:
+21
@@ -0,0 +1,21 @@
|
|||||||
|
.venv/
|
||||||
|
.venv-*/
|
||||||
|
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*.pyo
|
||||||
|
*.pyd
|
||||||
|
|
||||||
|
.pytest_cache/
|
||||||
|
.mypy_cache/
|
||||||
|
.ruff_cache/
|
||||||
|
.coverage
|
||||||
|
coverage.xml
|
||||||
|
htmlcov/
|
||||||
|
|
||||||
|
.env
|
||||||
|
.env.*
|
||||||
|
!.env.example
|
||||||
|
|
||||||
|
*.log
|
||||||
|
.DS_Store
|
||||||
Reference in New Issue
Block a user