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:
+7
-33
@@ -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/
|
|
||||||
|
|||||||
Reference in New Issue
Block a user