From 6621917731e14cadea87d1908e5f34b7c4ea1088 Mon Sep 17 00:00:00 2001 From: andrew Date: Wed, 2 Sep 2026 16:39:10 +0300 Subject: [PATCH] Add .gitignore --- .gitignore | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5edb56d --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# Python +__pycache__/ +*.py[cod] +*.egg-info/ +.eggs/ +build/ +dist/ +.venv/ +venv/ +.mypy_cache/ +.ruff_cache/ +.pytest_cache/ +.coverage +htmlcov/ +coverage.xml + +# Secrets and local config +.env +config.toml +credentials + +# OS +.DS_Store +Thumbs.db