diff options
Diffstat (limited to 'deploy')
-rwxr-xr-x | deploy | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -0,0 +1,8 @@ +#!/bin/sh +USER="root" +HOST="gustafrydholm.xyz" +DIR="/var/www/$HOST" # the directory where your web site files should go + +hugo && rsync -avz --delete public/ ${USER}@${HOST}:${DIR} # this will delete everything on the server that's not in the local public folder + +exit 0 |