Add infrastructure for running swarm agents as isolated Docker containers with HTTP-based coordination, startup recovery, and enhanced dashboard UI for agent management. - Dockerfile and docker-compose.yml for multi-service orchestration - DockerAgentRunner for programmatic container lifecycle management - Internal HTTP API for container agents to poll tasks and submit bids - Startup recovery system to reconcile orphaned tasks and stale agents - Enhanced UI partials for agent panels, chat, and task assignment - Timmy docker entry point with heartbeat and task polling - New Makefile targets for Docker workflows - Tests for swarm recovery Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
38 lines
1.6 KiB
Plaintext
38 lines
1.6 KiB
Plaintext
# ── Python ───────────────────────────────────────────────────────────────────
|
|
.venv/
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.pytest_cache/
|
|
htmlcov/
|
|
.coverage
|
|
coverage.xml
|
|
|
|
# ── Data (mounted as volume, not baked in) ───────────────────────────────────
|
|
data/
|
|
*.db
|
|
|
|
# ── Secrets / config ─────────────────────────────────────────────────────────
|
|
.env
|
|
.env.*
|
|
*.key
|
|
*.pem
|
|
|
|
# ── Git ───────────────────────────────────────────────────────────────────────
|
|
.git/
|
|
.gitignore
|
|
|
|
# ── Tests (not needed in production image) ───────────────────────────────────
|
|
tests/
|
|
|
|
# ── Docs ─────────────────────────────────────────────────────────────────────
|
|
docs/
|
|
*.md
|
|
|
|
# ── macOS ─────────────────────────────────────────────────────────────────────
|
|
.DS_Store
|