Files
blog/Makefile
T
2025-05-28 20:05:38 -04:00

11 lines
181 B
Makefile

.PHONY: deploy
deploy:
rsync -av public desk:/var/www/balki.me
build:
rm -rf public/*
hugo --logLevel debug
serve:
hugo server -D --bind "0.0.0.0" --navigateToChanged -p 2323