Skip to content

Commit 1b8f867

Browse files
committed
Update GitHub Pages to use current CONSIM version
Replace legacy standalone version with current demo application: - Copy static assets (JS, CSS) to docs/static/ - Create new index.html using app_demo.js (HTTP polling version) - Preserve legacy version as index_legacy.html for reference - Use Three.js from CDN for WebGL rendering The new version features: - Current consciousness simulation with 64 nodes - Modern Three.js rendering pipeline - Interactive controls and visualization modes - Multiverse superposition display - Real-time physics simulation To deploy: Merge this branch to main and GitHub Actions will automatically update https://jacobcdsmith.github.io/CONSIM Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LGyd7NZbZmUBGJNq2qpmY6
1 parent f32a450 commit 1b8f867

8 files changed

Lines changed: 8256 additions & 6532 deletions

File tree

docs/demo.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>CONSIM - Multiversal Consciousness Framework</title>
7+
<link rel="stylesheet" href="static/css/style.css">
8+
</head>
9+
<body>
10+
<div id="canvas-container"></div>
11+
12+
<!-- Three.js from CDN -->
13+
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
14+
15+
<!-- CONSIM Modules -->
16+
<script src="static/js/consciousnessRenderer.js"></script>
17+
<script src="static/js/app_demo.js"></script>
18+
19+
<script>
20+
// Initialize standalone demo
21+
document.addEventListener('DOMContentLoaded', () => {
22+
console.log('🧠 CONSIM - Multiversal Consciousness Framework (Standalone Demo)');
23+
const app = new ConsciousnessApp();
24+
});
25+
</script>
26+
</body>
27+
</html>

0 commit comments

Comments
 (0)