-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcom.example.nitpick.plist
More file actions
40 lines (34 loc) · 955 Bytes
/
Copy pathcom.example.nitpick.plist
File metadata and controls
40 lines (34 loc) · 955 Bytes
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
<?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.example.nitpick</string>
<key>WorkingDirectory</key>
<string>__INSTALL_DIR__</string>
<key>ProgramArguments</key>
<array>
<string>__UV_PATH__</string>
<string>run</string>
<string>python</string>
<string>-m</string>
<string>src.main</string>
<string>run</string>
</array>
<key>EnvironmentVariables</key>
<dict>
<key>PATH</key>
<string>/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin</string>
</dict>
<key>StartCalendarInterval</key>
<dict>
<key>Minute</key>
<integer>0</integer>
</dict>
<key>StandardOutPath</key>
<string>__INSTALL_DIR__/logs/launchd-stdout.log</string>
<key>StandardErrorPath</key>
<string>__INSTALL_DIR__/logs/launchd-stderr.log</string>
</dict>
</plist>