all repos — site @ 44287ab65b74763692f7c313807780c7a73fb64a

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/

.PHONY: build serve ci