-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcom.synodic.patchbay-relay.plist
More file actions
41 lines (41 loc) · 1.71 KB
/
com.synodic.patchbay-relay.plist
File metadata and controls
41 lines (41 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?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.synodic.patchbay-relay</string>
<key>ProgramArguments</key>
<array>
<!-- UPDATE: Replace with the absolute path to your patchbay-relay checkout -->
<string>/Users/YOURUSER/Developer/patchbay-relay/run.sh</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<dict>
<key>SuccessfulExit</key>
<false/>
</dict>
<key>StandardOutPath</key>
<!-- UPDATE: Replace with your patchbay-relay path -->
<string>/Users/YOURUSER/Developer/patchbay-relay/logs/bridge.log</string>
<key>StandardErrorPath</key>
<!-- UPDATE: Replace with your patchbay-relay path -->
<string>/Users/YOURUSER/Developer/patchbay-relay/logs/bridge.err</string>
<key>WorkingDirectory</key>
<!-- UPDATE: Replace with your patchbay-relay path -->
<string>/Users/YOURUSER/Developer/patchbay-relay</string>
<key>ThrottleInterval</key>
<integer>30</integer>
<key>EnvironmentVariables</key>
<dict>
<key>PATH</key>
<!-- UPDATE: Replace YOURUSER with your username so ~/.local/bin (where the uv installer puts uv) is reachable. -->
<string>/Users/YOURUSER/.local/bin:/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin</string>
<!-- UPDATE: path to picurious' claude-pi-shim if you want pi-backed topics.
Leave unset (or commented out) to route every topic to real claude. -->
<key>CLAUDE_PATH</key>
<string>/Users/YOURUSER/Developer/picurious/bin/claude-pi-shim</string>
</dict>
</dict>
</plist>