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 *.so
*.egg-info/ *.egg-info/
.eggs/ .eggs/
build/ /build/
dist/ /dist/
*.egg *.egg
# Virtual environments # Virtual environments
.venv/ .venv/
venv/ /venv/
env/ /env/
ENV/ /ENV/
# Test and coverage # Test and coverage
.pytest_cache/ .pytest_cache/
.coverage .coverage
.coverage.* .coverage.*
htmlcov/ /htmlcov/
coverage.xml coverage.xml
.mypy_cache/ .mypy_cache/
@@ -52,41 +52,15 @@ Thumbs.db
/logs/ /logs/
.ruff_cache/ .ruff_cache/
# Redis dumps
dump.rdb
*.rdb
# Database files # Database files
*.db *.db
*.db-journal *.db-journal
*.db-wal *.db-wal
*.db-shm *.db-shm
data/ /data/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Logs
*.log
/logs/
# Alembic (autogenerated migrations excluded, but keep 0001) # Alembic (autogenerated migrations excluded, but keep 0001)
alembic/versions/__pycache__/ alembic/versions/__pycache__/
# Frontend build artifacts
frontend/node_modules/
frontend/dist/
# Docker # Docker
.docker-data/ .docker-data/
# Test artifacts
.pytest_cache/
.coverage
.coverage.*
htmlcov/