Skip to content

Commit 929797b

Browse files
committed
ci: deploy schema explorer to GitHub Pages
1 parent 271134a commit 929797b

10 files changed

Lines changed: 65 additions & 0 deletions

File tree

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Generated entirely by coding agents from prompts without human review or refinement.
2+
name: Deploy Schema Explorer to Pages
3+
4+
on:
5+
push:
6+
branches: [main]
7+
workflow_dispatch:
8+
9+
permissions:
10+
contents: read
11+
pages: write
12+
id-token: write
13+
14+
concurrency:
15+
group: pages
16+
cancel-in-progress: false
17+
18+
jobs:
19+
deploy:
20+
name: Deploy
21+
environment:
22+
name: github-pages
23+
url: ${{ steps.deployment.outputs.page_url }}
24+
runs-on: ubuntu-latest
25+
steps:
26+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
27+
with:
28+
persist-credentials: false
29+
- uses: prefix-dev/setup-pixi@a09b6247153796b190642a2b53fac4241043cf6f # v0.10.0
30+
with:
31+
cache: true
32+
- name: Install dependencies
33+
run: pixi run --frozen pnpm --dir experimental/vibe/ui install --frozen-lockfile
34+
- name: Build
35+
run: pixi run --frozen pnpm --dir experimental/vibe/ui build
36+
env:
37+
SCHEMA_EXPLORER_BASE: /quent/
38+
- name: Set up Pages
39+
uses: actions/configure-pages@45bfe0192ca1faeb007ade9deae92b16b8254a0d # v6
40+
- name: Upload artifact
41+
uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9 # v5
42+
with:
43+
path: experimental/vibe/ui/schema-explorer/dist
44+
- name: Deploy to Pages
45+
id: deployment
46+
uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5

experimental/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Experimental code
2+
3+
This directory contains code under heavy development. It may intentionally
4+
contain incomplete, unused, or dead code while designs are developed from the
5+
bottom up. APIs, behavior, and structure may change without notice; do not rely
6+
on this code for production use.

experimental/vibe/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Vibe-coded experiments
2+
3+
Everything in this directory was written by LLMs solely through prompting and
4+
has not been manually reviewed or checked. It also has the unstable status
5+
described in the parent [`experimental`](../README.md) directory. Use it at your
6+
own risk.

experimental/vibe/ui/pnpm-workspace.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Generated entirely by coding agents from prompts without human review or refinement.
12
packages:
23
- 'schema-viewer'
34
- 'schema-explorer'

experimental/vibe/ui/schema-explorer/src/models/dynamo-inference.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Generated entirely by coding agents from prompts without human review or refinement.
12
quent: alpha
23
model: DynamoInferenceDeployment
34
doc: A didactic inference deployment inspired by NVIDIA Dynamo's serving, control, and cache planes.

experimental/vibe/ui/schema-explorer/src/models/hello.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Generated entirely by coding agents from prompts without human review or refinement.
12
quent: alpha
23
model: Hello
34

experimental/vibe/ui/schema-explorer/src/models/simple.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Generated entirely by coding agents from prompts without human review or refinement.
12
quent: alpha
23
model: AsyncExecutor
34
doc: A minimal async executor showing one entity of each major kind.

experimental/vibe/ui/schema-explorer/src/models/simulator.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Generated entirely by coding agents from prompts without human review or refinement.
12
quent: alpha
23
model: QueryEngineSimulator
34
doc: Query-engine simulator with task scheduling and resource usage.

experimental/vibe/ui/schema-explorer/src/models/sirius.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Generated entirely by coding agents from prompts without human review or refinement.
12
quent: alpha
23
model: SiriusQueryEngine
34
doc: Extended Sirius telemetry model with GPU topology and batch lifecycles.

experimental/vibe/ui/schema-explorer/vite.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { defineConfig } from 'vite';
77
import { fileURLToPath } from 'node:url';
88

99
export default defineConfig(({ command }) => ({
10+
base: process.env.SCHEMA_EXPLORER_BASE ?? '/',
1011
cacheDir: fileURLToPath(
1112
new URL('../node_modules/.vite/schema-explorer', import.meta.url),
1213
),

0 commit comments

Comments
 (0)