The home page is a centred card: title and pitch, your name, play the bot or continue the duel under way, create or join a duel by code, a sample ledger, the duels this browser holds with whose move it is, and the story of the game. The single-player board lives at /play. The droplet gains the duel server as a systemd service behind Caddy. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
40 lines
1.6 KiB
Bash
Executable File
40 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Build locally, push the static site and the duel server to the droplet,
|
|
# and restart the server. Usage: deploy/deploy.sh <droplet-ip-or-host>
|
|
set -euo pipefail
|
|
HOST="${1:?usage: deploy.sh <droplet-ip-or-host>}"
|
|
|
|
npm run check
|
|
npm run check:server
|
|
npm test
|
|
npm run build
|
|
|
|
# Old hashed chunks stay a week: a page loaded before this deploy can still
|
|
# fetch the module it was built against instead of failing mid-duel.
|
|
rsync -az --delete --filter='P _app/immutable/*' \
|
|
build/ "root@$HOST:/opt/waving-hands/build/"
|
|
|
|
# The server runs from source with tsx; it needs the engine, its own code,
|
|
# and the dependency manifest. Ledgers live outside this tree and survive.
|
|
rsync -az --delete \
|
|
--include='/server/***' --include='/src/' --include='/src/lib/' --include='/src/lib/game/***' \
|
|
--include='/package.json' --include='/package-lock.json' --include='/deploy/' --include='/deploy/waving-hands.service' \
|
|
--exclude='*' \
|
|
./ "root@$HOST:/opt/waving-hands/app/"
|
|
|
|
ssh "root@$HOST" '
|
|
find /opt/waving-hands/build/_app/immutable -type f -mtime +7 -delete
|
|
chown -R root:caddy /opt/waving-hands/build
|
|
chmod -R g+rX /opt/waving-hands/build
|
|
cd /opt/waving-hands/app && npm install --no-audit --no-fund --omit=optional
|
|
chown -R waving-hands:waving-hands /opt/waving-hands/app
|
|
cp /opt/waving-hands/app/deploy/waving-hands.service /etc/systemd/system/waving-hands.service
|
|
systemctl daemon-reload
|
|
systemctl enable --now waving-hands
|
|
systemctl restart waving-hands
|
|
systemctl reload caddy
|
|
sleep 1
|
|
systemctl --no-pager -l status waving-hands | head -3
|
|
'
|
|
echo "deployed."
|