reverseqr

qr codes working in both directions
git clone https://tongong.net/git/reverseqr.git
Log | Files | Refs | README

Makefile (424B)


      1 dev:
      2 	npx parcel src/index.html --no-autoinstall
      3 
      4 build:
      5 	rm -rf dist
      6 	npx parcel build src/index.html --no-autoinstall
      7 
      8 # abuse of git but whatever i just want github pages
      9 deploy: build
     10 	git stash push
     11 	git checkout --orphan gh-pages
     12 	git --work-tree dist add --all
     13 	git --work-tree dist commit -m gh-pages
     14 	git push origin HEAD:gh-pages --force
     15 	rm -rf dist
     16 	git checkout -f master
     17 	git branch -D gh-pages
     18 	git stash pop