/ config / com.sovereign.first-officer-local.plist
com.sovereign.first-officer-local.plist
 1  <?xml version="1.0" encoding="UTF-8"?>
 2  <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
 3  <plist version="1.0">
 4  <dict>
 5      <key>Label</key>
 6      <string>com.sovereign.first-officer-local</string>
 7  
 8      <key>ProgramArguments</key>
 9      <array>
10          <string>/usr/bin/python3</string>
11          <string>/Users/rcerf/repos/Sovereign_OS/run_first_officer_local.py</string>
12      </array>
13  
14      <key>WorkingDirectory</key>
15      <string>/Users/rcerf/repos/Sovereign_OS</string>
16  
17      <key>RunAtLoad</key>
18      <true/>
19  
20      <key>KeepAlive</key>
21      <true/>
22  
23      <key>StandardOutPath</key>
24      <string>/Users/rcerf/repos/Sovereign_OS/logs/first-officer-local.log</string>
25  
26      <key>StandardErrorPath</key>
27      <string>/Users/rcerf/repos/Sovereign_OS/logs/first-officer-local.error.log</string>
28  
29      <key>EnvironmentVariables</key>
30      <dict>
31          <key>PYTHONUNBUFFERED</key>
32          <string>1</string>
33      </dict>
34  
35      <!-- Restart if it crashes -->
36      <key>ThrottleInterval</key>
37      <integer>10</integer>
38  </dict>
39  </plist>