baa-conductor

git clone 

baa-conductor / ops / launchd
im_wower  ·  2026-03-22

so.makefile.baa-status-api.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<!--
 4  Optional local status API.
 5  Keep the same runtime paths as conductor and worker-runner so that service
 6  logs and temporary files stay under one repo-owned runtime root.
 7  Use scripts/runtime/install-launchd.sh to render the actual install copy.
 8-->
 9<plist version="1.0">
10  <dict>
11    <key>Label</key>
12    <string>so.makefile.baa-status-api</string>
13
14    <key>WorkingDirectory</key>
15    <string>/Users/george/code/baa-conductor</string>
16
17    <key>EnvironmentVariables</key>
18    <dict>
19      <key>PATH</key>
20      <string>/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/george/.local/bin:/Users/george/bin</string>
21      <key>HOME</key>
22      <string>/Users/george</string>
23      <key>LANG</key>
24      <string>en_US.UTF-8</string>
25      <key>LC_ALL</key>
26      <string>en_US.UTF-8</string>
27      <key>BAA_CONDUCTOR_HOST</key>
28      <string>mini</string>
29      <key>BAA_CONDUCTOR_ROLE</key>
30      <string>primary</string>
31      <key>BAA_CONTROL_API_BASE</key>
32      <string>https://control-api.makefile.so</string>
33      <key>BAA_CONDUCTOR_LOCAL_API</key>
34      <string>http://127.0.0.1:4317</string>
35      <key>BAA_STATUS_API_HOST</key>
36      <string>127.0.0.1</string>
37      <key>BAA_RUNS_DIR</key>
38      <string>/Users/george/code/baa-conductor/runs</string>
39      <key>BAA_WORKTREES_DIR</key>
40      <string>/Users/george/code/baa-conductor/worktrees</string>
41      <key>BAA_LOGS_DIR</key>
42      <string>/Users/george/code/baa-conductor/logs</string>
43      <key>BAA_TMP_DIR</key>
44      <string>/Users/george/code/baa-conductor/tmp</string>
45      <key>BAA_STATE_DIR</key>
46      <string>/Users/george/code/baa-conductor/state</string>
47      <key>BAA_NODE_ID</key>
48      <string>mini-main</string>
49      <key>BAA_SHARED_TOKEN</key>
50      <string>replace-me</string>
51    </dict>
52
53    <key>ProgramArguments</key>
54    <array>
55      <string>/usr/bin/env</string>
56      <string>node</string>
57      <string>/Users/george/code/baa-conductor/apps/status-api/dist/index.js</string>
58    </array>
59
60    <key>ProcessType</key>
61    <string>Background</string>
62    <key>RunAtLoad</key>
63    <true/>
64    <key>KeepAlive</key>
65    <true/>
66    <key>ThrottleInterval</key>
67    <integer>10</integer>
68    <key>StandardOutPath</key>
69    <string>/Users/george/code/baa-conductor/logs/launchd/so.makefile.baa-status-api.out.log</string>
70    <key>StandardErrorPath</key>
71    <string>/Users/george/code/baa-conductor/logs/launchd/so.makefile.baa-status-api.err.log</string>
72  </dict>
73</plist>