← back to Homesonspec

apps/admin/src/app/engine/page.tsx

17 lines

import EngineLive from "./EngineLive";

export const dynamic = "force-dynamic";

export default function EnginePage() {
  return (
    <div>
      <h1 className="text-2xl font-bold">Ingestion engine</h1>
      <p className="mt-1 text-sm text-neutral-500">
        Live tail of the continuous build-loop (pm2 <code>homesonspec-ingest</code> on Kamatera) —
        watch each adapter × state sweep in real time. Green = homes published, cyan = new sweep, red = errors.
      </p>
      <EngineLive />
    </div>
  );
}