all repos — site @ cb0be91654a1cb1a1be14a32d88c2fd905ca63fc

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