From 015e60639d6c535b35fbd464dc6618dc2f1fc1cf Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Thu, 8 Jan 2026 15:41:28 -0500 Subject: [PATCH] [launchd] Add hungryroot plists --- .../LaunchAgents/com.hungryroot.celery.plist | 49 +++++++++++++++++++ .../LaunchAgents/com.hungryroot.django.plist | 49 +++++++++++++++++++ .../LaunchAgents/com.hungryroot.flower.plist | 49 +++++++++++++++++++ 3 files changed, 147 insertions(+) create mode 100644 launchd/Library/LaunchAgents/com.hungryroot.celery.plist create mode 100644 launchd/Library/LaunchAgents/com.hungryroot.django.plist create mode 100644 launchd/Library/LaunchAgents/com.hungryroot.flower.plist diff --git a/launchd/Library/LaunchAgents/com.hungryroot.celery.plist b/launchd/Library/LaunchAgents/com.hungryroot.celery.plist new file mode 100644 index 0000000..f90f7af --- /dev/null +++ b/launchd/Library/LaunchAgents/com.hungryroot.celery.plist @@ -0,0 +1,49 @@ + + + + + + Label + com.hungryroot.celery + + + ProgramArguments + + /bin/bash + -lc + + cd /Users/colin.powell/src/github.com/hungryroot/hungryroot \ + && eval "$(direnv export bash)" \ + && just celery + + + + + + RunAtLoad + + + + KeepAlive + + + + WorkingDirectory + /Users/colin.powell/src/github.com/hungryroot/hungryroot + + + StandardOutPath + /tmp/hungryroot-celery.log + StandardErrorPath + /tmp/hungryroot-celery.log + + + EnvironmentVariables + + PATH + /opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin + + + + diff --git a/launchd/Library/LaunchAgents/com.hungryroot.django.plist b/launchd/Library/LaunchAgents/com.hungryroot.django.plist new file mode 100644 index 0000000..8fc8ff6 --- /dev/null +++ b/launchd/Library/LaunchAgents/com.hungryroot.django.plist @@ -0,0 +1,49 @@ + + + + + + Label + com.hungryroot.django + + + ProgramArguments + + /bin/bash + -lc + + cd /Users/colin.powell/src/github.com/hungryroot/hungryroot \ + && eval "$(direnv export bash)" \ + && just django + + + + + + RunAtLoad + + + + KeepAlive + + + + WorkingDirectory + /Users/colin.powell/src/github.com/hungryroot/hungryroot + + + StandardOutPath + /tmp/hungryroot-django.log + StandardErrorPath + /tmp/hungryroot-django.log + + + EnvironmentVariables + + PATH + /opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin + + + + diff --git a/launchd/Library/LaunchAgents/com.hungryroot.flower.plist b/launchd/Library/LaunchAgents/com.hungryroot.flower.plist new file mode 100644 index 0000000..74ea20f --- /dev/null +++ b/launchd/Library/LaunchAgents/com.hungryroot.flower.plist @@ -0,0 +1,49 @@ + + + + + + Label + com.hungryroot.flower + + + ProgramArguments + + /bin/bash + -lc + + cd /Users/colin.powell/src/github.com/hungryroot/hungryroot \ + && eval "$(direnv export bash)" \ + && just flower + + + + + + RunAtLoad + + + + KeepAlive + + + + WorkingDirectory + /Users/colin.powell/src/github.com/hungryroot/hungryroot + + + StandardOutPath + /tmp/hungryroot-flower.log + StandardErrorPath + /tmp/hungryroot-flower.log + + + EnvironmentVariables + + PATH + /opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin + + + +