Initial commit

This commit is contained in:
Michiel Borkent 2021-05-23 11:31:40 +02:00
commit 5bbd4d199d
9 changed files with 385 additions and 0 deletions

15
script/release Executable file
View file

@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -eo pipefail
clojure -A:dev -m shadow.cljs.devtools.cli release main
cp resources/public/index.html gh-pages
cp resources/public/xterm.css gh-pages
mkdir -p gh-pages/ui
cp resources/public/ui/main.js gh-pages/ui/main.js
cd gh-pages
git add .
git commit -m "update build"
git push origin gh-pages