restructure project and update deploy script

This commit is contained in:
2025-06-24 16:11:16 +02:00
parent 0451033744
commit 806dbad25a
6 changed files with 21 additions and 0 deletions

21
deploy_to_hetzner.sh Normal file
View File

@@ -0,0 +1,21 @@
#!/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 ..."
sshpass -p 'BiLqHib8s5Ag2FmL' sftp -oBatchMode=no -b - $USER@$SERVER <<EOF
cd $REMOTE_DIR
put -r $LOCAL_DIR/index.html
put -r $LOCAL_DIR/favicon.ico
put -r $LOCAL_DIR/logo.png
put -r $LOCAL_DIR/device.png
bye
EOF
echo "Deployment complete. Visit your site to verify: http://summitwave.eu/"

0
src/.keep Normal file
View File

View File

Before

Width:  |  Height:  |  Size: 4.8 MiB

After

Width:  |  Height:  |  Size: 4.8 MiB

View File

Before

Width:  |  Height:  |  Size: 9.4 KiB

After

Width:  |  Height:  |  Size: 9.4 KiB

View File

Before

Width:  |  Height:  |  Size: 462 KiB

After

Width:  |  Height:  |  Size: 462 KiB