From ae9fe78b37cc8eb52e5688d28d2fe96836839dbd Mon Sep 17 00:00:00 2001 From: mheuer Date: Sat, 13 Dec 2025 10:39:51 +0100 Subject: [PATCH] feat: update deployment script to include manual images and improve structure - Add manual/beacon-front.jpg to deployment - Create manual/img directory and upload all manual images - Add German comments for clarity (Hauptbilder, Manual sections) - Improve directory navigation structure in SFTP commands --- deploy_to_hetzner.sh | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/deploy_to_hetzner.sh b/deploy_to_hetzner.sh index b1deedc..745f497 100755 --- a/deploy_to_hetzner.sh +++ b/deploy_to_hetzner.sh @@ -16,13 +16,23 @@ put -r $LOCAL_DIR/impressum.html put -r $LOCAL_DIR/robots.txt put -r $LOCAL_DIR/sitemap.xml put -r $LOCAL_DIR/.htaccess + +# Hauptbilder der Landingpage mkdir img cd img put -r $LOCAL_DIR/img/* cd .. -# Ensure manual folder exists and upload manual page + +# Manual (HTML + Bilder) mkdir manual -put -r $LOCAL_DIR/manual/index.html manual/index.html +cd manual +put -r $LOCAL_DIR/manual/index.html +put -r $LOCAL_DIR/manual/beacon-front.jpg +mkdir img +cd img +put -r $LOCAL_DIR/manual/img/* +cd .. +cd .. bye EOF