mirror of
https://github.com/koala73/worldmonitor.git
synced 2026-04-26 01:24:59 +02:00
9 lines
591 B
JavaScript
9 lines
591 B
JavaScript
#!/usr/bin/env node
|
|
import { runBundle, MIN, HOUR } from './_bundle-runner.mjs';
|
|
|
|
await runBundle('derived-signals', [
|
|
{ label: 'Correlation', script: 'seed-correlation.mjs', seedMetaKey: 'correlation:cards', intervalMs: 5 * MIN, timeoutMs: 60_000 },
|
|
{ label: 'Cross-Source-Signals', script: 'seed-cross-source-signals.mjs', seedMetaKey: 'intelligence:cross-source-signals', intervalMs: 15 * MIN, timeoutMs: 120_000 },
|
|
{ label: 'Regional-Snapshots', script: 'seed-regional-snapshots.mjs', seedMetaKey: 'intelligence:regional-snapshots', intervalMs: 6 * HOUR, timeoutMs: 180_000 },
|
|
]);
|