Files
tpml/deploy
2025-06-25 15:54:11 +02:00

9 lines
295 B
Bash
Executable File

#!/bin/sh
USER=pleb
HOST=bob
DIR=/var/www/tpml/ # the directory where your website files should go
hugo && rsync -avz --rsync-path='sudo rsync' --progress -e ssh --delete public/ ${USER}@${HOST}:${DIR} # this will delete everything on the server that's not in the local public folder
exit 0