Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(at): correct PDS droplet IP to 165.227.120.137

The PDS moved from 138.197.35.160 to 165.227.120.137 — update
the CLI default and set PDS_CONTACT_EMAIL_ADDRESS=mail@aesthetic.computer
on the live server.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+2 -2
+2 -2
at/cli.mjs
··· 492 492 493 493 async function commandSSH(args) { 494 494 const { execSync } = await import("child_process"); 495 - const ip = process.env.PDS_SSH_HOST || "138.197.35.160"; 495 + const ip = process.env.PDS_SSH_HOST || "165.227.120.137"; 496 496 const key = process.env.PDS_SSH_KEY || `${process.env.HOME}/.ssh/aesthetic_pds`; 497 497 const remoteCmd = args._.slice(1).join(" "); 498 498 ··· 519 519 process.exit(1); 520 520 } 521 521 522 - const ip = process.env.PDS_SSH_HOST || "138.197.35.160"; 522 + const ip = process.env.PDS_SSH_HOST || "165.227.120.137"; 523 523 const sshKey = process.env.PDS_SSH_KEY || `${process.env.HOME}/.ssh/aesthetic_pds`; 524 524 const envFile = "/pds/pds.env"; 525 525