Add .task*.md to .gitignore and remove already-tracked task files from the index. These are orchestrator runtime artifacts (B-3) and should not be committed.
24 lines
220 B
Plaintext
24 lines
220 B
Plaintext
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.env
|
|
.venv/
|
|
venv/
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
*.sqlite
|
|
*.db
|
|
data/
|
|
*.tif
|
|
*.tiff
|
|
*.mbtiles
|
|
.DS_Store
|
|
|
|
# Orchestrator runtime task files (B-3)
|
|
.task*.md
|