From 6ff2c8b754977c75df53e6f01ea29601fe8b43f4 Mon Sep 17 00:00:00 2001 From: Barabashka Date: Thu, 23 Apr 2026 12:06:09 +0300 Subject: [PATCH] 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. --- .gitignore | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2b5f55c --- /dev/null +++ b/.gitignore @@ -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