11 lines
310 B
Makefile
11 lines
310 B
Makefile
preview:
|
|
hugo serve --buildDrafts --buildExpired --buildFuture --navigateToChanged
|
|
|
|
USER:='root'
|
|
HOST:='10.10.1.5'
|
|
DIR:='/srv/gabevenberg'
|
|
|
|
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
|