From 545e1993895c90c223732a79b7f021cce64296e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A4=D1=91=D0=B4=D0=BE=D1=80?= Date: Thu, 16 Oct 2025 10:51:57 +0300 Subject: [PATCH] Initial commit: Add .gitignore --- .gitignore | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ff98bb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,55 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python + +# Virtual environments +venv/ +env/ +ENV/ +embedding_env/ +parser_env/ + +# Logs +*.log +logs/ +*.log.* + +# Excel отчёты (их много генерится) +*.xlsx +*.xls +audit_*.csv + +# HTML дампы +*.html +debug_*.py + +# Кеш и временные файлы +.cache/ +*.tmp +*.temp + +# Notebook checkpoints +.ipynb_checkpoints/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo + +# OS +.DS_Store +Thumbs.db + +# Данные и чувствительная информация +API_KEY.txt +NATASHA_API_KEY.txt +*.env + +# Build +build/ +dist/ +*.egg-info/