docs(manifest): correct backend droplet IP + log command
Some checks are pending
Swift Build & Test / swift build + test (push) Waiting to run

The backend droplet is 165.227.96.183 (DO lilith-store-backend, nyc3, wg
10.9.0.5), not the stale 209.38.51.98. Logs go to /var/log/mac-sync-server.log
(the droplet journald is volatile), so the logs command tails the file.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Natalie 2026-06-29 22:23:00 -04:00
parent f9cf50e695
commit 02c78db2de

View file

@ -38,11 +38,11 @@ platforms:
command: "ssh plum 'tail -f ~/Library/Application\\ Support/MacSync/stderr.log'"
# DO backend droplet (lilith-store-backend) — replaces dead homelan `black`.
# public 209.38.51.98 · wg 10.9.0.5 · VPC 10.20.0.2. See uvlava plan
# public 165.227.96.183 · wg 10.9.0.5 · VPC 10.20.0.2. See uvlava plan
# (~/.claude/plans/nested-jingling-truffle.md, replacement item #8).
backend-droplet:
os: linux
host: 209.38.51.98
host: 165.227.96.183
environment: production
services:
server:
@ -55,9 +55,9 @@ platforms:
script: deploy/deploy-server.sh
stop:
path: ~/Code/@ct/@applications/macsync
script: "ssh 209.38.51.98 'sudo systemctl stop mac-sync-server'"
script: "ssh 165.227.96.183 'sudo systemctl stop mac-sync-server'"
status:
command: "ssh 209.38.51.98 'curl -sf http://localhost:3201/health > /dev/null && echo ok'"
command: "ssh 165.227.96.183 'curl -sf http://localhost:3201/health > /dev/null && echo ok'"
type: http
logs:
command: "ssh 209.38.51.98 'journalctl -u mac-sync-server -f --no-pager'"
command: "ssh 165.227.96.183 'tail -f /var/log/mac-sync-server.log'"