Files
Pulse/scripts/com.pulse.hot-dev.plist
rcourtman 21190eefad feat(scripts): add macOS launchd setup for hot-dev environment
- Add com.pulse.hot-dev.plist for launchd agent configuration
- Add dev-launchd-setup.sh for installing/uninstalling launchd agent
- Add dev-launchd-wrapper.sh for running hot-dev with proper environment
2026-02-07 23:38:06 +00:00

34 lines
883 B
Plaintext

<?xml version="1.0" encoding="UTF-8"?>
<!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>com.pulse.hot-dev</string>
<key>ProgramArguments</key>
<array>
<string>/bin/bash</string>
<string>/Volumes/Development/pulse/repos/pulse/scripts/dev-launchd-wrapper.sh</string>
</array>
<key>WorkingDirectory</key>
<string>/Volumes/Development/pulse/repos/pulse</string>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>StandardOutPath</key>
<string>/Users/rcourtman/Library/Logs/Pulse/hot-dev.stdout.log</string>
<key>StandardErrorPath</key>
<string>/Users/rcourtman/Library/Logs/Pulse/hot-dev.stderr.log</string>
<key>ThrottleInterval</key>
<integer>5</integer>
</dict>
</plist>