From d430b69888017893af4ec82dd4c601093a361ba0 Mon Sep 17 00:00:00 2001 From: Chris Date: Fri, 3 Apr 2026 03:57:53 +0800 Subject: [PATCH] Ignore .venv and Python cache files --- .gitignore | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e6c4033 --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +# Python cache +__pycache__/ +*.py[cod] +.pytest_cache/ +.ruff_cache/ + +# Virtualenv +.venv/ +venv/ + +# Local env and logs +.env +*.log + +# OS +.DS_Store