Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions showcase/app/README.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,34 @@
# Comptextv7 Vercel Showcase App
# Comptextv7 Enterprise Infrastructure Showcase

This is the dedicated SHOWCASE-02 frontend for Comptextv7. It is intentionally separate from the operational dashboard and Daimler-style experiment surfaces.
This is the dedicated enterprise-grade infrastructure showcase for Comptextv7. It presents deterministic token compression, replay verification, artifact lineage, CI-backed validation, operational telemetry, and reviewer walkthroughs as a restrained internal platform surface.

## Deployment posture

- Static-first HTML/CSS application.
- Vercel-compatible through `vercel.json`.
- No backend, API server, database, or local execution dependency.
- No Chilli/Hatch assets and no core processing logic changes.
- No fake metrics or fake validation claims; the page points reviewers to repository documents and CI artifacts.
- React + TypeScript + Vite single-page application.
- Netlify-compatible preview and production deployment through `netlify.toml`.
- Vercel compatibility is retained for existing showcase deployments through `vercel.json`.
- Static artifact output only; no backend, API server, database, secrets, or production customer data.
- Operational semantics are represented with stable IDs: `RUN-2026-05-13-8842`, `ART-CTX7-2F91A`, `REP-CONSISTENCY-441`, and `GH-ACT-551882`.

## Local checks

```bash
npm run validate
npm run typecheck
npm run build
```

`npm run build` copies `public/` into `dist/`, which is the configured Vercel output directory.
`npm run build` emits the deployable static application into `dist/`.

## Vercel setup
## Netlify setup

Use `showcase/app` as the Vercel project root. The configured build command is:
Use `showcase/app` as the Netlify base directory. The configured build command is:

```bash
npm run build
```

The configured output directory is:
The configured publish directory is:

```bash
dist
Expand Down
16 changes: 16 additions & 0 deletions showcase/app/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Comptextv7 Enterprise Infrastructure Showcase for deterministic token compression, replay verification, artifact lineage, CI validation, and operational telemetry."
/>
<title>Comptextv7 Enterprise Infrastructure Showcase</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
11 changes: 11 additions & 0 deletions showcase/app/netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[build]
command = "npm run build"
publish = "dist"

[build.environment]
NODE_VERSION = "22"

[[redirects]]
from = "/*"
to = "/index.html"
status = 200
Loading
Loading