- Update deployment scripts to upload manual/index.html to server - Make deploy_to_hetzner.sh executable - Rebrand site from "Auracast made easy" to "Wireless Audio Made Easy" - Update all meta tags and descriptions to remove Auracast branding - Refine hero headline and call-to-action text - Simplify use case descriptions with clearer, more concise copy - Rewrite "Why Auracast" section as "Why Wireless Audio" with update
30 lines
773 B
Bash
Executable File
30 lines
773 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 -i ~/.ssh/id_ed25519 -oBatchMode=yes -b - $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/"
|