all repos — site @ 4ae4e7b99ae1b76640fb303d8f625ca3861d8e6b

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: build
	aws s3 sync build s3://site/ --size-only

.PHONY: build serve ci