From f93c5c2c1b8f49af3cb498385e6ed844a26100c1 Mon Sep 17 00:00:00 2001 From: Sick Prodigy Date: Sun, 31 May 2026 14:43:37 -0400 Subject: [PATCH] chore: add .gitignore file to exclude common Python artifacts --- .gitignore | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..97d4484 --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +.venv/ +__pycache__/ +logs/ +*.py[cod] +.env +.pytest_cache/ +.mypy_cache/ +.ruff_cache/ +*.db +*.sqlite +*.sqlite3 \ No newline at end of file