Добавлен корневой .gitignore

This commit is contained in:
2026-07-24 22:03:42 +03:00
parent d582765b27
commit 614c141338
+51
View File
@@ -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/