Files
brain-of-reese/.gitignore
T
ducoterra 4971e2859d
Build and Push Containers / build-and-push-app (push) Successful in 12s
Build and Push Containers / build-and-push-db (push) Successful in 10s
chore(agent): track .agent/ planning tree in git
Remove the blanket .agent/ gitignore so the phase roadmap, user
stories, reports, and PLAN.md are versioned with the code. Only
runtime artifacts (.agent/phase-sessions/, .agent/pipeline.log)
remain ignored. Update AGENTS.md git protocol rule to match.
2026-09-01 10:18:22 -04:00

31 lines
514 B
Plaintext

# --- Python ---
__pycache__/
*.py[cod]
*.egg-info/
.venv/
.pytest_cache/
.ruff_cache/
.pyright/
.mypy_cache/
.coverage
coverage.xml
htmlcov/
# --- Environment / secrets ---
.env
.env.*
!.env.example
# --- Planning / agent pipeline state (the .agent/ tree is tracked; only runtime artifacts ignored) ---
.agent/phase-sessions/
.agent/pipeline.log
# --- Frontend build artifacts (sources live in frontend/, builds are local-only) ---
node_modules/
frontend/dist/
# --- Logs & misc ---
*.log
.DS_Store
Thumbs.db