Initial snapshot before transformerlab recovery

This commit is contained in:
Codex
2026-03-31 13:25:25 -06:00
commit d860318d43
49 changed files with 3864 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
- name: Clone ChunkViz
git:
repo: "https://github.com/gkamradt/ChunkViz"
dest: "{{ courseware_repos_dir }}/ChunkViz"
version: "{{ courseware_chunkviz_commit }}"
update: false
- name: Install ChunkViz dependencies
command: npm install
args:
chdir: "{{ courseware_repos_dir }}/ChunkViz"
creates: "{{ courseware_repos_dir }}/ChunkViz/node_modules"
- name: Build ChunkViz
command: npm run build
args:
chdir: "{{ courseware_repos_dir }}/ChunkViz"
creates: "{{ courseware_repos_dir }}/ChunkViz/build/index.html"