From 0f82891017245c05f96e3a33f47902ae0a3be94b Mon Sep 17 00:00:00 2001 From: hanis Date: Thu, 30 Apr 2026 21:24:39 +0900 Subject: [PATCH] Add .gitignore for Python and data files Excludes __pycache__, compiled Python files, .env, and CSV data files from version control. Co-Authored-By: Claude Sonnet 4.6 --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0d75dff --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +__pycache__/ +*.pyc +*.pyo +.env +*.csv