techWebsite/justfile

11 lines
324 B
Makefile
Raw Normal View History

preview:
hugo serve --buildDrafts --buildExpired --buildFuture --navigateToChanged
USER:='root'
2024-07-29 15:30:25 -05:00
HOST:='gabevenberg.com'
DIR:='/var/www/gabevenberg.com'
deploy:
hugo --minify
rsync -rvz --delete public/ {{USER}}@{{HOST}}:{{DIR}} # this will delete everything on the server that's not in the local public folder