-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcom.autosprints.linkedin-sync.plist
More file actions
53 lines (46 loc) · 1.55 KB
/
Copy pathcom.autosprints.linkedin-sync.plist
File metadata and controls
53 lines (46 loc) · 1.55 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
42
43
44
45
46
47
48
49
50
51
52
53
<?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.autosprints.linkedin-sync</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/bin/node</string>
<string>/Users/mcvalosborne/AutoSprints/linkedin-sync/node_modules/.bin/ts-node</string>
<string>/Users/mcvalosborne/AutoSprints/linkedin-sync/src/check-status.ts</string>
<string>--limit</string>
<string>10</string>
</array>
<key>WorkingDirectory</key>
<string>/Users/mcvalosborne/AutoSprints/linkedin-sync</string>
<key>EnvironmentVariables</key>
<dict>
<key>PATH</key>
<string>/usr/local/bin:/usr/bin:/bin</string>
</dict>
<!-- Run at 9am and 5pm daily -->
<key>StartCalendarInterval</key>
<array>
<dict>
<key>Hour</key>
<integer>9</integer>
<key>Minute</key>
<integer>0</integer>
</dict>
<dict>
<key>Hour</key>
<integer>17</integer>
<key>Minute</key>
<integer>0</integer>
</dict>
</array>
<key>StandardOutPath</key>
<string>/Users/mcvalosborne/AutoSprints/linkedin-sync/logs/sync.log</string>
<key>StandardErrorPath</key>
<string>/Users/mcvalosborne/AutoSprints/linkedin-sync/logs/sync-error.log</string>
<!-- Don't run if laptop is on battery -->
<key>LowPriorityIO</key>
<true/>
</dict>
</plist>