feat: add isolated historical replay calibration
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
const path = require('path');
|
||||
const { runReplayWorker } = require('./replayWorker');
|
||||
|
||||
runReplayWorker({
|
||||
archivePath: process.env.DURIIN_DB || path.resolve('/data/archive.sqlite'),
|
||||
intelligencePath: process.env.INTELLIGENCE_DB || path.resolve('/data/intelligence.sqlite'),
|
||||
pollMs: Number(process.env.AUTONOMY_REPLAY_POLL_MS) || 15000,
|
||||
}).catch((error) => { console.error('[replay] fatal:', error); process.exit(1); });
|
||||
Reference in New Issue
Block a user