remove legacy backend stack and stale deployment docs after rebuild

This commit is contained in:
2026-02-23 23:43:33 -05:00
parent 6012dd3fcf
commit 2987ac06fa
40 changed files with 38 additions and 3163 deletions

View File

@@ -19,7 +19,7 @@ export default function SignUpPage() {
)}
>
<p className="text-sm text-[color:var(--terminal-muted)]">
For production deployment you can reintroduce Better Auth, but the rebuilt stack is intentionally self-contained for fast iteration.
For production deployment you can reintroduce full multi-user authentication, but this rebuild is intentionally self-contained for fast iteration.
</p>
<Link href="/" className="mt-6 block">

View File

@@ -126,7 +126,7 @@ function FilingsPageContent() {
)}
>
{liveTask ? (
<Panel title="Active Task" subtitle={`${liveTask.task_type} is processing in worker.`}>
<Panel title="Active Task" subtitle={`${liveTask.task_type} is processing in the task engine.`}>
<div className="flex items-center justify-between gap-3 rounded-lg border border-[color:var(--line-weak)] bg-[color:var(--panel-soft)] px-3 py-2">
<p className="text-sm text-[color:var(--terminal-bright)]">{liveTask.id}</p>
<StatusPill status={liveTask.status} />

View File

@@ -3,7 +3,7 @@ import type { Metadata } from 'next';
export const metadata: Metadata = {
title: 'Fiscal Clone',
description: 'Futuristic fiscal intelligence terminal powered by Better Auth and durable AI tasks.'
description: 'Futuristic fiscal intelligence terminal with durable tasks and OpenClaw integration.'
};
export default function RootLayout({ children }: { children: React.ReactNode }) {