summaryrefslogtreecommitdiff
path: root/Magefile.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-06 09:42:43 +0300
committerPaul Buetow <paul@buetow.org>2026-05-06 09:42:43 +0300
commitd78a2530da91b76625b71c2aeaf3293abc6c3a4b (patch)
tree5d59a7a1014955564b9f2c30decaf6be257e61cf /Magefile.go
parentfbb7c9a9ad8d03d5d095ac441a58b37537e0ab8d (diff)
move demo/ to docs/tutorial/, commit assets, consolidate TUI docs
- demo/ renamed to docs/tutorial/ (tapes, scripts, TUTORIAL.md) - docs/tutorial/assets/ added to git (51 MB of GIFs + PNGs); removed /demo/assets/ from .gitignore so images render on Codeberg - docs/tui-reference.md removed; its hotkey tables merged into a new "Hotkey Quick Reference" section at the end of TUTORIAL.md - TUTORIAL.md: updated install section (mage buildDocker, no GOTOOLCHAIN=auto), fixed README relative path (../../README.md), updated internal tapes/scripts/assets path prose - README.md: updated all demo/ image paths and links to docs/tutorial/; TUI and recording-modes links now point to TUTORIAL.md anchors - AGENTS.md: updated demo/ references to docs/tutorial/ - Magefile.go: updated demoDir/demoTapesDir/demoScriptsDir/demoRunTape/ demoSudoKeepers constants to docs/tutorial/ paths Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'Magefile.go')
-rw-r--r--Magefile.go20
1 files changed, 10 insertions, 10 deletions
diff --git a/Magefile.go b/Magefile.go
index e9458b5..e675a8a 100644
--- a/Magefile.go
+++ b/Magefile.go
@@ -1159,18 +1159,18 @@ func runParquetChecks(dir, file string) error {
// --- Demo (VHS-driven TUI recordings) ---------------------------------------
//
-// Demo regenerates GIFs and PNG screenshots under demo/assets/ by running every
-// VHS tape under demo/tapes/. Each tape is wrapped by demo/scripts/run-tape.sh
-// which spins up the background workload generator. A sudo keep-alive loop in
-// the background of `mage demo` keeps the sudo timestamp warm so no tape ever
-// blocks on a password prompt.
+// Demo regenerates GIFs and PNG screenshots under docs/tutorial/assets/ by
+// running every VHS tape under docs/tutorial/tapes/. Each tape is wrapped by
+// docs/tutorial/scripts/run-tape.sh which spins up the background workload
+// generator. A sudo keep-alive loop keeps the sudo timestamp warm so no tape
+// ever blocks on a password prompt.
const (
- demoDir = "demo"
- demoTapesDir = "demo/tapes"
- demoScriptsDir = "demo/scripts"
- demoRunTape = "demo/scripts/run-tape.sh"
- demoSudoKeepers = "demo/scripts/sudo-keepalive.sh"
+ demoDir = "docs/tutorial"
+ demoTapesDir = "docs/tutorial/tapes"
+ demoScriptsDir = "docs/tutorial/scripts"
+ demoRunTape = "docs/tutorial/scripts/run-tape.sh"
+ demoSudoKeepers = "docs/tutorial/scripts/sudo-keepalive.sh"
)
// Demo regenerates every demo asset (full ~14-tape run, ~10 minutes).