Initial phase 1 baseline implementation
Some checks failed
CI / Backend (push) Failing after 4s
CI / Frontend (push) Successful in 11s
CI / Contracts and repository policy (push) Failing after 5s
CI / Container (push) Has been skipped

This commit is contained in:
Elijah 2026-07-16 19:14:01 -07:00
parent 099c53badf
commit 077cf7601a
29 changed files with 1339 additions and 39 deletions

View file

@ -10,10 +10,10 @@ export function App() {
return (
<main className="foundation-shell">
<section className="foundation-card" aria-labelledby="foundation-title">
<p className="eyebrow">Foundation phase</p>
<p className="eyebrow">Phase 1 foundation</p>
<h1 id="foundation-title">Drive v2</h1>
<p className="summary">
The repository, contracts, architecture boundaries, and deployment shell are ready for product development.
The persistence foundation is connected and ready for owner setup and authentication.
</p>
<dl className="status-list">
<div>
@ -22,7 +22,7 @@ export function App() {
</div>
<div>
<dt>Owner setup</dt>
<dd>{status.data?.initialized === true ? "Complete" : "Begins in Phase 1"}</dd>
<dd>{status.data?.initialized === true ? "Complete" : "Not initialized"}</dd>
</div>
<div>
<dt>Build</dt>
@ -33,4 +33,3 @@ export function App() {
</main>
);
}

View file

@ -2,10 +2,9 @@ import { describe, expect, it } from "vitest";
import type { SetupStatus } from "./getSetupStatus";
describe("SetupStatus", () => {
it("represents the foundation state", () => {
const status: SetupStatus = { initialized: false, phase: "foundation", version: "test" };
expect(status.phase).toBe("foundation");
it("represents the phase 1 setup state", () => {
const status: SetupStatus = { initialized: false, phase: "phase-1", version: "test" };
expect(status.phase).toBe("phase-1");
expect(status.initialized).toBe(false);
});
});