From cab3218ce19b5b7e54ff0d323abd45256b690382 Mon Sep 17 00:00:00 2001 From: Aaron Nelson Date: Sat, 25 Apr 2026 02:08:40 +0000 Subject: [PATCH] =?UTF-8?q?Add=20gitignore=20=E2=80=94=20exclude=20env,=20?= =?UTF-8?q?db,=20logs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9095018 --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +# Environment and secrets +.env +*.env + +# Database files +db/ +conversations.db +watcher_state.json + +# Python +__pycache__/ +*.pyc +*.pyo +venv/ + +# Logs +*.log + +# OS +.DS_Store +Thumbs.db