13 lines
278 B
Bash
Executable file
13 lines
278 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
HOST="${QR_DEPLOY_HOST:-192.168.0.226}"
|
|
DEST="${QR_DEPLOY_DEST:-/var/www/html/qr}"
|
|
|
|
rsync -av --delete \
|
|
--exclude '.git/' \
|
|
--exclude 'AGENTS.md' \
|
|
--exclude '.DS_Store' \
|
|
./ "${HOST}:${DEST}/"
|
|
|
|
echo "Deployed to ${HOST}:${DEST}"
|