From 614c141338f0ba9d5acb7a9f40bad111abfe636f Mon Sep 17 00:00:00 2001 From: host Date: Fri, 24 Jul 2026 22:03:42 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20=D0=BA=D0=BE=D1=80=D0=BD=D0=B5=D0=B2=D0=BE=D0=B9=20.gi?= =?UTF-8?q?tignore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5a3733c --- /dev/null +++ b/.gitignore @@ -0,0 +1,51 @@ +# --- Python --- +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +*.egg +*.egg-info/ +.pytest_cache/ +.mypy_cache/ +.ruff_cache/ +.coverage +htmlcov/ +venv/ +.venv/ +env/ + +# --- Node --- +node_modules/ +dist/ +build/ +.vite/ +*.local +.pnpm-store/ + +# --- Секреты и переменные окружения --- +.env +.env.local +.env.*.local +backend/.env +frontend/.env.local + +# --- IDE / редакторы --- +.idea/ +.vscode/ +*.swp +*.swo +.DS_Store +Thumbs.db + +# --- Логи --- +*.log +logs/ + +# --- Docker --- +*.pid + +# --- Тесты --- +.pytest_cache/ +.coverage +.tox/