all repos — site @ 7f62efe6bc667c7cb11a94f850da2509241d646a

source for my site, found at icyphox.sh

makefile (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
build:
	@vite build

serve:
	@./bin/serve.sh

ci:
	@./bin/build.sh

deploy:
	aws s3 sync build s3://site/

.PHONY: build serve ci