Files
mon_cv/deploy
2026-03-15 10:02:03 +01:00

9 lines
313 B
Bash
Executable File

#!/bin/sh
USER=pleb
HOST=patrick
DIR=/mnt/ssd/www/resumes/julien/ # 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