-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcom.joncrangle.llm.plist
29 lines (29 loc) · 1.01 KB
/
com.joncrangle.llm.plist
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
<?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>
<!-- Note: to run at startup, save to ~/Library/LaunchAgents/ -->
<!-- Run: launchctl load ~/Library/LaunchAgents/com.joncrangle.llm.plist -->
<!-- Edit: ~/Library/LaunchAgents/homebrew.mxcl.ollama.plist -->
<!-- Add the following to the plist: -->
<!--<key>EnvironmentVariables</key>-->
<!--<dict>-->
<!-- <key>OLLAMA_HOST</key>-->
<!-- <string>0.0.0.0</string>-->
<!--</dict>-->
<key>Label</key>
<string>com.joncrangle.llm</string>
<key>ProgramArguments</key>
<array>
<string>/bin/sh</string>
<string>-c</string>
<string>cd /Users/jonathancrangle/Documents/Code/ComfyUI/ && /opt/homebrew/bin/uv run main.py --listen 0.0.0.0</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>StandardErrorPath</key>
<string>/tmp/start_webui.err</string>
</dict>
</plist>