feat: Add Playbook Manager, Saved Searches, and Timeline View components

- Implemented PlaybookManager for creating and managing investigation playbooks with templates.
- Added SavedSearches component for managing bookmarked queries and recurring scans.
- Introduced TimelineView for visualizing forensic event timelines with zoomable charts.
- Enhanced backend processing with auto-queued jobs for dataset uploads and improved database concurrency.
- Updated frontend components for better user experience and performance optimizations.
- Documented changes in update log for future reference.
This commit is contained in:
2026-02-23 14:23:07 -05:00
parent 37a9584d0c
commit 5a2ad8ec1c
110 changed files with 10537 additions and 1185 deletions

View File

@@ -7,24 +7,24 @@ services:
ports:
- "8000:8000"
environment:
# ── LLM Cluster (Wile / Roadrunner via Tailscale) ──
# ── LLM Cluster (Wile / Roadrunner via Tailscale) ──
TH_WILE_HOST: "100.110.190.12"
TH_ROADRUNNER_HOST: "100.110.190.11"
TH_OLLAMA_PORT: "11434"
TH_OPEN_WEBUI_URL: "https://ai.guapo613.beer"
# ── Database ──
# ── Database ──
TH_DATABASE_URL: "sqlite+aiosqlite:///./threathunt.db"
# ── Auth ──
# ── Auth ──
TH_JWT_SECRET: "change-me-in-production"
# ── Enrichment API keys (set your own) ──
# ── Enrichment API keys (set your own) ──
# TH_VIRUSTOTAL_API_KEY: ""
# TH_ABUSEIPDB_API_KEY: ""
# TH_SHODAN_API_KEY: ""
# ── Agent behaviour ──
# ── Agent behaviour ──
TH_AGENT_MAX_TOKENS: "4096"
TH_AGENT_TEMPERATURE: "0.3"
volumes:
@@ -51,7 +51,7 @@ services:
networks:
- threathunt
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:3000/"]
test: ["CMD", "curl", "-f", "http://127.0.0.1:3000/"]
interval: 30s
timeout: 10s
retries: 3