com.hungryroot.flower.plist 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
  3. "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  4. <plist version="1.0">
  5. <dict>
  6. <!-- A unique label -->
  7. <key>Label</key>
  8. <string>com.hungryroot.flower</string>
  9. <!-- Use bash to allow `cd &&` -->
  10. <key>ProgramArguments</key>
  11. <array>
  12. <string>/bin/bash</string>
  13. <string>-lc</string>
  14. <string>cd /Users/colin.powell/src/github.com/hungryroot/hungryroot &amp;&amp; eval "$(/opt/homebrew/bin/direnv export bash)" &amp;&amp; just flower</string>
  15. </array>
  16. <!-- Run when the agent is loaded -->
  17. <key>RunAtLoad</key>
  18. <true/>
  19. <!-- Set a working directory explicitly (recommended) -->
  20. <key>WorkingDirectory</key>
  21. <string>/Users/colin.powell/src/github.com/hungryroot/hungryroot</string>
  22. <!-- Log output -->
  23. <key>StandardOutPath</key>
  24. <string>/tmp/hungryroot-flower.log</string>
  25. <key>StandardErrorPath</key>
  26. <string>/tmp/hungryroot-flower.log</string>
  27. <!-- Ensure PATH includes Homebrew -->
  28. <key>EnvironmentVariables</key>
  29. <dict>
  30. <key>PATH</key>
  31. <string>/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin</string>
  32. </dict>
  33. </dict>
  34. </plist>