Skip to content

Instantly share code, notes, and snippets.

@bval
Created June 28, 2015 19:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bval/6dfe33c0b7e002769051 to your computer and use it in GitHub Desktop.
Save bval/6dfe33c0b7e002769051 to your computer and use it in GitHub Desktop.
launchd startup for homebridge
<?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>KeepAlive</key>
<true/>
<key>Label</key>
<string>com.nfarina.homebridge</string>
<key>ProgramArguments</key>
<array>
<string>/opt/local/bin/node</string>
<string>app.js</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>WorkingDirectory</key>
<string>/Users/bvalentine/homebridge/</string>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment