docs: презентация проекта и отчёт о качестве

This commit is contained in:
2026-06-27 12:15:00 +05:00
parent 8da6fa4d1d
commit 7d339dce87
4 changed files with 357 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env bash
# Вендорит reveal.js локально (чтобы презентация не зависела от CDN на сцене).
set -euo pipefail
V=5.1.0
B="https://cdn.jsdelivr.net/npm/reveal.js@${V}"
mkdir -p reveal/dist/theme reveal/plugin/notes reveal/plugin/highlight
curl -fsSL "$B/dist/reveal.css" -o reveal/dist/reveal.css
curl -fsSL "$B/dist/reveal.js" -o reveal/dist/reveal.js
curl -fsSL "$B/dist/theme/white.css" -o reveal/dist/theme/white.css
curl -fsSL "$B/plugin/notes/notes.js" -o reveal/plugin/notes/notes.js
echo "reveal.js ${V} vendored into ./reveal/"