"Updates"

This commit is contained in:
2026-07-06 13:44:14 +02:00
parent 55e29cab08
commit c4fca37204
463 changed files with 79 additions and 0 deletions
Executable
+8
View File
@@ -0,0 +1,8 @@
#!/bin/sh
USER=pleb
HOST=carlo
DIR=/mnt/ssd/www/kontadenn/ # 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