Files
summitwave_landing/deploy_to_hetzner.sh
mheuer 0f1165c4ad feat: add comprehensive German manual for Summitwave Beacon with full documentation
- Create complete online manual in German with modern dark UI design
- Add detailed sections covering installation, configuration, operation, and maintenance
- Include safety guidelines, CE/RED compliance information, and technical specifications
- Implement responsive layout with sticky navigation and mobile-friendly TOC
- Add visual styling matching Auracast UI with dark panels and teal accents
- Document Web-
2025-12-13 10:32:50 +01:00

31 lines
750 B
Bash
Executable File

#!/bin/bash
# Deploy SummitWave landing page to Hetzner public_html via SFTP
# === CONFIGURATION ===
SERVER="www269.your-server.de"
USER="summitb"
REMOTE_DIR="public_html"
LOCAL_DIR="$(dirname \"$0\")/src"
# === UPLOAD ===
echo "Uploading website files to $USER@$SERVER:$REMOTE_DIR ..."
sftp $USER@$SERVER <<EOF
cd $REMOTE_DIR
put -r $LOCAL_DIR/index.html
put -r $LOCAL_DIR/impressum.html
put -r $LOCAL_DIR/robots.txt
put -r $LOCAL_DIR/sitemap.xml
put -r $LOCAL_DIR/.htaccess
mkdir img
cd img
put -r $LOCAL_DIR/img/*
cd ..
# Ensure manual folder exists and upload manual page
mkdir manual
put -r $LOCAL_DIR/manual/index.html manual/index.html
bye
EOF
echo "Deployment complete. Visit your site to verify: http://summitwave.eu/"
# BiLqHib8s5Ag2FmL