feat(FN-1887): merge fusion/fn-1887

This commit is contained in:
Fusion
2026-04-16 10:53:06 -07:00
committed by gsxdsm
parent 3aeb63ae68
commit 74b4d20c45
11 changed files with 203 additions and 14 deletions

View File

@@ -394,6 +394,7 @@ export async function runDaemon(opts: DaemonOptions = {}) {
const app = createServer(store, {
engine: cwdEngine,
engineManager,
centralCore: sharedCentralCore ?? undefined,
onMerge: (taskId) => cwdEngine.onMerge(taskId),
authStorage: dashboardAuthStorage,
modelRegistry,

View File

@@ -577,6 +577,7 @@ export async function runDashboard(port: number, opts: { paused?: boolean; dev?:
app = createServer(store, {
engine: cwdEngine,
engineManager,
centralCore: centralCoreForEngine,
authStorage: dashboardAuthStorage,
modelRegistry,
automationStore,
@@ -737,6 +738,7 @@ export async function runDashboard(port: number, opts: { paused?: boolean; dev?:
// Dev mode: no engine, pass individual proxy objects to createServer
app = createServer(store, {
onMerge,
centralCore: centralCoreForMesh ?? undefined,
authStorage: dashboardAuthStorage,
modelRegistry,
automationStore,

View File

@@ -558,6 +558,7 @@ export async function runServe(
const app = createServer(store, {
engine: cwdEngine,
engineManager,
centralCore: sharedCentralCore ?? undefined,
onMerge: (taskId) => cwdEngine.onMerge(taskId),
authStorage: dashboardAuthStorage,
modelRegistry,