En cours...

This commit is contained in:
2025-09-16 10:21:01 +02:00
parent abf8f1894e
commit a1e977dbd0
140 changed files with 3861 additions and 0 deletions

8
deploy Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
USER=pleb
HOST=bob
DIR=/var/www/shop/ # 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