repos

Add Makefile for dev server, build, and deploy commands

5c364393 by Isaac Bythewood · 2 months 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