Skip to content

Commit 039734f

Browse files
Noptusclaude
andcommitted
add GitHub Pages dashboard for Micro-Integration Factory
Single-page dark-themed dashboard with Solace green accents. Sections: - Hero with live integration count - What the factory produces (HA deployment, security, governance) - Interactive 11-stage lifecycle pipeline - Nightly actions timeline (schema drift, deployments, EP reconciliation) - Suggested actions with priority levels - Event catalog with reuse status and Event Portal sync state - Run history with status badges and deployment targets - Full reference with tabbed navigation (security, reuse, sources, broker, portal, topics, decisions) Includes GitHub Actions workflow for automatic deployment from docs/. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 97feb90 commit 039734f

2 files changed

Lines changed: 1013 additions & 0 deletions

File tree

.github/workflows/pages.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [main]
6+
paths: [docs/**]
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+
environment:
21+
name: github-pages
22+
url: ${{ steps.deployment.outputs.page_url }}
23+
runs-on: ubuntu-latest
24+
steps:
25+
- uses: actions/checkout@v4
26+
- uses: actions/configure-pages@v5
27+
- uses: actions/upload-pages-artifact@v3
28+
with:
29+
path: docs
30+
- id: deployment
31+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)