rotogod/deploy/rotogod.launchd.plist
m3ultra d4257d8f99 chore: launchd instance runs sam2.1-hiera-large (final-quality mattes)
Dev instances stay on small via the default; the always-on tailnet
instance behind digalot.fyi/rotogod/ gets the big model.
Measured on M3 Ultra MPS at 720p: click ~4s, propagate ~1.7 fps.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-27 16:38:38 +10:00

32 lines
1.3 KiB
Plaintext

<?xml version="1.0" encoding="UTF-8"?>
<!--
Always-on rotogod on m3ultra, bound to the TAILNET IP only (LAN/public never
see it; digalot.fyi/rotogod/ reaches it through the dealgod-nginx proxy).
Install:
cp deploy/rotogod.launchd.plist ~/Library/LaunchAgents/party.monster.rotogod.plist
launchctl bootstrap gui/$(id -u) ~/Library/LaunchAgents/party.monster.rotogod.plist
Logs: ~/Library/Logs/rotogod.log
-->
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key><string>party.monster.rotogod</string>
<key>ProgramArguments</key>
<array>
<string>/Users/m3ultra/Documents/rotogod/.venv/bin/python</string>
<string>/Users/m3ultra/Documents/rotogod/run.py</string>
<string>--host</string><string>100.89.131.57</string>
<string>--port</string><string>8484</string>
</array>
<key>WorkingDirectory</key><string>/Users/m3ultra/Documents/rotogod</string>
<key>EnvironmentVariables</key>
<dict>
<key>ROTOGOD_SAM2</key><string>facebook/sam2.1-hiera-large</string>
</dict>
<key>RunAtLoad</key><true/>
<key>KeepAlive</key><true/>
<key>StandardOutPath</key><string>/Users/m3ultra/Library/Logs/rotogod.log</string>
<key>StandardErrorPath</key><string>/Users/m3ultra/Library/Logs/rotogod.log</string>
</dict>
</plist>