Initial commit

This commit is contained in:
Eric Wagoner
2022-12-03 14:26:48 -05:00
commit e43a0580e9
128 changed files with 9443 additions and 0 deletions

8
deploy Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
USER=admin
HOST=social
DIR=../../var/www/blog/www # the directory where your web site files should go
hugo && rsync -avz --no-t --no-p --delete public/ ${HOST}:~/${DIR} # this will delete everything on the server that's not in the local public folder
exit 0