Skip to content

Instantly share code, notes, and snippets.

@nathanielvarona
Last active April 4, 2016 05:00
Show Gist options
  • Save nathanielvarona/1dcefb8c4be3f6a84836 to your computer and use it in GitHub Desktop.
Save nathanielvarona/1dcefb8c4be3f6a84836 to your computer and use it in GitHub Desktop.
mehserve OSX LaunchAgents https://www.npmjs.com/package/mehserve
<?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.npmjs.mehserve</string>
<key>ProgramArguments</key>
<array>
<string>sh</string>
<string>-i</string>
<string>-c</string>
<string>$SHELL --login -c "/usr/local/bin/mehserve run"</string>
</array>
<key>StandardErrorPath</key>
<string>/dev/null</string>
<key>StandardOutPath</key>
<string>/dev/null</string>
<key>KeepAlive</key>
<true/>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment