[object Object]

← back to Dw Pitch Followup

pitch: add 3x/day launchd rebuild so the board never goes stale (bootstrap = Steve paste)

8f32c4bdab0978d4da51dfecf0fbc8e7e0bc633f · 2026-07-15 09:58:31 -0700 · Steve

Files touched

Diff

commit 8f32c4bdab0978d4da51dfecf0fbc8e7e0bc633f
Author: Steve <steve@designerwallcoverings.com>
Date:   Wed Jul 15 09:58:31 2026 -0700

    pitch: add 3x/day launchd rebuild so the board never goes stale (bootstrap = Steve paste)
---
 .gitignore                               |  2 ++
 launchd/com.steve.dw-pitch-rebuild.plist | 32 ++++++++++++++++++++++++++++++++
 2 files changed, 34 insertions(+)

diff --git a/.gitignore b/.gitignore
index 408e474..913ae95 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,3 +8,5 @@ build/
 .next/
 data/lists.json
 data/*.jsonl
+
+5x/*.log
diff --git a/launchd/com.steve.dw-pitch-rebuild.plist b/launchd/com.steve.dw-pitch-rebuild.plist
new file mode 100644
index 0000000..e6314d5
--- /dev/null
+++ b/launchd/com.steve.dw-pitch-rebuild.plist
@@ -0,0 +1,32 @@
+<?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.steve.dw-pitch-rebuild</string>
+  <key>ProgramArguments</key>
+  <array>
+    <string>/opt/homebrew/bin/node</string>
+    <string>scripts/build-lists.js</string>
+  </array>
+  <key>WorkingDirectory</key>
+  <string>/Users/macstudio3/Projects/dw-pitch-followup</string>
+  <key>EnvironmentVariables</key>
+  <dict>
+    <key>PATH</key>
+    <string>/opt/homebrew/bin:/usr/bin:/bin:/usr/sbin:/sbin</string>
+  </dict>
+  <key>StartCalendarInterval</key>
+  <array>
+    <dict><key>Hour</key><integer>6</integer><key>Minute</key><integer>30</integer></dict>
+    <dict><key>Hour</key><integer>11</integer><key>Minute</key><integer>30</integer></dict>
+    <dict><key>Hour</key><integer>16</integer><key>Minute</key><integer>30</integer></dict>
+  </dict>
+  <key>RunAtLoad</key>
+  <true/>
+  <key>StandardOutPath</key>
+  <string>/Users/macstudio3/Projects/dw-pitch-followup/5x/rebuild.log</string>
+  <key>StandardErrorPath</key>
+  <string>/Users/macstudio3/Projects/dw-pitch-followup/5x/rebuild.log</string>
+</dict>
+</plist>

← e592d47 pitch: email history collapsed by default, lazy-loads on exp  ·  back to Dw Pitch Followup  ·  pitch: click any email in the history to expand its full bod e039b5a →