mirror of
https://github.com/mblanke/ThreatHunt.git
synced 2026-03-01 05:50:21 -05:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user