Initial phase 1 baseline implementation
This commit is contained in:
parent
099c53badf
commit
077cf7601a
29 changed files with 1339 additions and 39 deletions
|
|
@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue