Skip to content

Commit 2b2c0f4

Browse files
Publish static demos via GitHub Pages (Actions workflow + README links)
1 parent c725dba commit 2b2c0f4

3 files changed

Lines changed: 46 additions & 1 deletion

File tree

.github/workflows/pages.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Deploy GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [main]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: pages
15+
cancel-in-progress: false
16+
17+
jobs:
18+
deploy:
19+
environment:
20+
name: github-pages
21+
url: ${{ steps.deployment.outputs.page_url }}
22+
runs-on: ubuntu-latest
23+
steps:
24+
- name: Checkout
25+
uses: actions/checkout@v4
26+
27+
- name: Setup Pages
28+
uses: actions/configure-pages@v5
29+
30+
- name: Upload artifact
31+
uses: actions/upload-pages-artifact@v3
32+
with:
33+
# Publish repo root static HTML demos as-is
34+
path: .
35+
36+
- name: Deploy to GitHub Pages
37+
id: deployment
38+
uses: actions/deploy-pages@v4

.nojekyll

Whitespace-only changes.

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,14 @@
77
## 🗺️ The Vision
88
The **Infinite Optical Fabric (IOF)** is a high-dimensional resonance platform designed for real-time topological optimization and forensic analysis. By mapping 5D manifold symmetries onto biological and cognitive scales, it enables a self-healing, synchronized network of information pathways.
99

10-
🚀 **Local demo:** open [`ForensicTelemetry_Standalone.html`](ForensicTelemetry_Standalone.html) directly in a browser to inspect the standalone telemetry viewer. A hosted Pages demo is not currently available; this README intentionally avoids linking to a dead URL.
10+
🚀 **Live demos (GitHub Pages):**
11+
- [URP Soul Terminal (index)](https://immaculate1022.github.io/IOF-Resonance-Core/)
12+
- [Forensic Telemetry Standalone](https://immaculate1022.github.io/IOF-Resonance-Core/ForensicTelemetry_Standalone.html)
13+
- [Unity Protocol Visualizer](https://immaculate1022.github.io/IOF-Resonance-Core/UnityProtocol_Visualizer.html)
14+
15+
**Local fallback:** open [`ForensicTelemetry_Standalone.html`](ForensicTelemetry_Standalone.html) directly in a browser.
16+
17+
> **First-time Pages setup:** Repository → **Settings****Pages** → Build and deployment **Source****GitHub Actions**. After the workflow runs once, the links above go live.
1118
1219
IOF represents a post-von Neumann paradigm where computation occurs at the speed of light through resonant standing waves.
1320

0 commit comments

Comments
 (0)