Initial qr webpage scaffold

This commit is contained in:
marijo 2026-06-23 13:11:25 +00:00
commit c4afd3c253
4 changed files with 51 additions and 0 deletions

13
deploy.sh Executable file
View file

@ -0,0 +1,13 @@
#!/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}"