Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 417 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 417 Bytes

7 GUIs in CLJS

View Online

Run locally

npm install
npx shadow-cljs watch frontend

Publish release on github pages

git checkout gh-pages
git merge main
npm install 
rm -r docs
rm -r public/js
npx shadow-cljs release frontend
cp -r public docs
git add . 
git commit -m 'release'
git push