-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcom.sam.pi-dashboard.plist
More file actions
63 lines (56 loc) · 2.31 KB
/
Copy pathcom.sam.pi-dashboard.plist
File metadata and controls
63 lines (56 loc) · 2.31 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
54
55
56
57
58
59
60
61
62
63
<?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.sam.pi-dashboard</string>
<key>ProgramArguments</key>
<!-- WASM blast-radius flags (SDK-migration slice 8): the server runs under
the no-wasm-tier-up / liftoff-only / wasm-lazy-compilation V8 flags.
These are launch-time isolate flags applied to the node invocation
inside start.sh (this target), NOT here (start.sh is a shell script,
not node). The server logs the effective V8 flags on boot. -->
<array>
<string>/Users/sam.painter/pi-dashboard/start.sh</string>
</array>
<key>WorkingDirectory</key>
<string>/Users/sam.painter/pi-dashboard</string>
<key>EnvironmentVariables</key>
<dict>
<key>PATH</key>
<string>/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/sam.painter/.local/bin:/Users/sam.painter/.cargo/bin</string>
<key>HOME</key>
<string>/Users/sam.painter</string>
<key>SHELL</key>
<string>/bin/zsh</string>
<key>AWS_PROFILE</key>
<string>openclaw-bedrock</string>
<key>BEDROCK_MANTLE_AWS_PROFILE</key>
<string>openclaw-bedrock</string>
<key>AWS_REGION</key>
<string>us-west-2</string>
<key>AWS_DEFAULT_REGION</key>
<string>us-west-2</string>
<key>PI_DASH_PORT</key>
<string>7777</string>
<key>BEDROCK_MANTLE_LOG_FILE</key>
<string>/Users/sam.painter/Library/Logs/pi-dashboard/bedrock-mantle.log</string>
<key>BEDROCK_MANTLE_EMPTY_DUMP_DIR</key>
<string>/Users/sam.painter/Library/Logs/pi-dashboard/empty-dumps</string>
</dict>
<!-- Start on login -->
<key>RunAtLoad</key>
<true/>
<!-- Always keep running — restart on any exit -->
<key>KeepAlive</key>
<true/>
<!-- Wait 10 seconds before restarting after exit -->
<key>ThrottleInterval</key>
<integer>10</integer>
<!-- Logs -->
<key>StandardOutPath</key>
<string>/Users/sam.painter/Library/Logs/pi-dashboard/stdout.log</string>
<key>StandardErrorPath</key>
<string>/Users/sam.painter/Library/Logs/pi-dashboard/stderr.log</string>
</dict>
</plist>