<?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>
	<!--The name of our service-->
	<key>Label</key>
	<string>com.example.Simple</string>

	<!--The path to our .app bundle
		We set this to empty and replace it in generate.sh
		-->
	<key>Program</key>
	<string></string>

	<!--A list of environment vars that the service will be launched with-->
	<key>EnvironmentVariables</key>
	<dict>
		<key>RUN_FROM_LAUNCHD</key>
		<string>true</string>
		<key>EXAMPLE_SIMPLE_VERBOSE</key>
		<string>false</string>
		<key>EXAMPLE_SIMPLE_LOG_PATH</key>
		<string></string>
	</dict>

	<!--Run the service when launchd loads this plistj-->
	<key>RunAtLoad</key>
	<true/>

	<!--Restart the service if it crashes-->
	<key>KeepAlive</key>
	<true/>

	<!--If the service crashes, wait this many seconds before restarting-->
	<key>ThrottleInterval</key>
	<integer>10</integer>
</dict>
</plist>
