mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-02-18 23:41:48 +01:00
- 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
34 lines
883 B
Plaintext
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>
|