heartwood every commit a ring

Add Makefile for dev server, build, and deploy commands

afd5b270 by Isaac Bythewood · 1 month ago

added Makefile
@@ -0,0 +1,19 @@export NEXT_TELEMETRY_DISABLED=1.PHONY: install run build push cleanrun:	bun startinstall:	bun installbuild:	bun run next:buildpush:	git remote | xargs -I R git push R masterclean:	rm -rf node_modules	rm -rf .next