-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcom.synodic.claude-telegram-bridge.plist
More file actions
36 lines (36 loc) · 1.23 KB
/
com.synodic.claude-telegram-bridge.plist
File metadata and controls
36 lines (36 loc) · 1.23 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
<?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.stargate</string>
<key>ProgramArguments</key>
<array>
<!-- UPDATE: Replace with the absolute path to your stargate checkout -->
<string>/Users/YOURUSER/Developer/stargate/run.sh</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<dict>
<key>SuccessfulExit</key>
<false/>
</dict>
<key>StandardOutPath</key>
<!-- UPDATE: Replace with your stargate path -->
<string>/Users/YOURUSER/Developer/stargate/logs/bridge.log</string>
<key>StandardErrorPath</key>
<!-- UPDATE: Replace with your stargate path -->
<string>/Users/YOURUSER/Developer/stargate/logs/bridge.err</string>
<key>WorkingDirectory</key>
<!-- UPDATE: Replace with your stargate path -->
<string>/Users/YOURUSER/Developer/stargate</string>
<key>ThrottleInterval</key>
<integer>30</integer>
<key>EnvironmentVariables</key>
<dict>
<key>PATH</key>
<string>/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin</string>
</dict>
</dict>
</plist>