Configuring Redwood on MacOS - miheerdew/delayed-admin GitHub Wiki

Save this file as /Library/LaunchDaemons/com.github.andybalholm.redwood.plist

<?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.github.andybalholm.redwood</string>
	<key>ProgramArguments</key>
	<array>
            <string>/usr/local/bin/redwood</string>
	</array>
	<key>UserName</key>
        <string>nobody</string>
        <key>StandardOutPath</key>
        <string>/var/log/redwood/stdout.log</string>
        <key>StandardErrorPath</key>
        <string>/var/log/redwood/stderr.log</string>
</dict>
</plist>
⚠️ **GitHub.com Fallback** ⚠️