shieldx/scripts/deploy-213.sh
Rene Fichtmueller a3793a1357 feat: ShieldX v0.1.0 — Self-Evolving LLM Prompt Injection Defense
10-layer defense pipeline with kill chain mapping, self-healing,
self-learning, and compliance reporting. Local-first, zero cloud deps.

- 72 detection rules across 7 kill chain phases
- 294 unit tests, 500+ attack corpus samples
- Management dashboard (Next.js 15, 10 pages)
- Automated resistance testing (2x daily, 31 probes)
- MITRE ATLAS, OWASP LLM Top 10, EU AI Act compliance
- Integrations: Next.js middleware, Ollama, n8n
- PostgreSQL 17 + pgvector for persistent learning
2026-03-27 15:07:27 +13:00

15 lines
360 B
Bash
Executable File

#!/bin/bash
export PATH="/opt/homebrew/bin:$PATH"
cd ~/shieldx
echo "=== ShieldX Deploy ==="
echo "Host: $(hostname), Node: $(node -v)"
pm2 delete shieldx 2>/dev/null || true
pm2 start ecosystem.config.js
pm2 save
sleep 3
pm2 list
echo "HTTP check:"
curl -s -o /dev/null -w "%{http_code}" http://localhost:3102/ || echo "not ready"
echo ""
echo "=== Done ==="