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
19 lines
467 B
JavaScript
19 lines
467 B
JavaScript
module.exports = {
|
|
apps: [{
|
|
name: 'shieldx',
|
|
cwd: './app',
|
|
script: 'node_modules/.bin/next',
|
|
args: 'start -p 3102',
|
|
instances: 1,
|
|
autorestart: true,
|
|
watch: false,
|
|
max_memory_restart: '512M',
|
|
env: {
|
|
NODE_ENV: 'production',
|
|
DATABASE_URL: process.env.DATABASE_URL || 'postgresql://shieldx:changeme@localhost:5432/shieldx',
|
|
OLLAMA_ENDPOINT: 'http://localhost:11434',
|
|
SHIELDX_LOG_LEVEL: 'info',
|
|
},
|
|
}],
|
|
}
|