Initial qr webpage scaffold
This commit is contained in:
commit
c4afd3c253
4 changed files with 51 additions and 0 deletions
13
deploy.sh
Executable file
13
deploy.sh
Executable 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}"
|
||||
Loading…
Add table
Add a link
Reference in a new issue