Add notes and deploy script

This commit is contained in:
2026-03-30 16:59:53 +02:00
parent 601ead1fd9
commit 94817f8cc0
33 changed files with 943 additions and 650 deletions

14
deploy.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
# Check if server argument is provided
if [ -z "$1" ]; then
echo "Error: Please provide the server as an argument."
echo "Usage: $0 <server>"
exit 1
fi
SERVER="$1"
rm -rf public/*
hugo --minify
scp -r public/* "$SERVER":/srv/