all repos — site @ cb0be91654a1cb1a1be14a32d88c2fd905ca63fc

source for my site, found at icyphox.sh

makefile (view raw)

 1build:
 2	@vite build
 3
 4serve:
 5	@./bin/serve.sh
 6
 7ci:
 8	@./bin/build.sh
 9
10deploy: build
11	aws s3 sync build s3://site/ --size-only
12
13.PHONY: build serve ci