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
This commit is contained in:
2025-12-13 10:39:51 +01:00
parent 0f1165c4ad
commit ae9fe78b37

View File

@@ -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