fix(deploy): .gitignore — anchor all dir patterns to root (/logs/, /data/, /build/, /dist/, /venv/, /env/, /htmlcov/) to prevent recursive ignore of frontend source dirs

This commit is contained in:
Agent Zero
2026-08-17 20:42:56 +02:00
parent f888785b39
commit 40fd633917
+7 -33
View File
@@ -11,21 +11,21 @@ __pycache__/
*.so
*.egg-info/
.eggs/
build/
dist/
/build/
/dist/
*.egg
# Virtual environments
.venv/
venv/
env/
ENV/
/venv/
/env/
/ENV/
# Test and coverage
.pytest_cache/
.coverage
.coverage.*
htmlcov/
/htmlcov/
coverage.xml
.mypy_cache/
@@ -52,41 +52,15 @@ Thumbs.db
/logs/
.ruff_cache/
# Redis dumps
dump.rdb
*.rdb
# Database files
*.db
*.db-journal
*.db-wal
*.db-shm
data/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Logs
*.log
/logs/
/data/
# Alembic (autogenerated migrations excluded, but keep 0001)
alembic/versions/__pycache__/
# Frontend build artifacts
frontend/node_modules/
frontend/dist/
# Docker
.docker-data/
# Test artifacts
.pytest_cache/
.coverage
.coverage.*
htmlcov/