Добавлен корневой .gitignore
This commit is contained in:
+51
@@ -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/
|
||||||
Reference in New Issue
Block a user