diff --git a/source/getting-started/advanced.markdown b/source/getting-started/advanced.markdown index bf2cf5698d9..074df8e4857 100644 --- a/source/getting-started/advanced.markdown +++ b/source/getting-started/advanced.markdown @@ -14,8 +14,10 @@ Here are some general tutorials on how to setup some of the more advanced deploy
+ +
@@ -96,4 +98,30 @@ sudo journalctl -f -u home-assistant ```
+
+Setting up Home Assistant to run as a background service is simple. OS X will +start it on boot and make sure it's always running. + +To get Home Assistant installed as a background service, run: + +```bash +$ hass --install-osx + +Home Assistant has been installed. Open it here: http://localhost:8123 + +``` + +Home Assistant will log to `~/Library/Logs/homeassistant.log` + +To uninstall the service, run: + +```bash +$ hass --uninstall-osx + +Home Assistant has been uninstalled. + +``` + +
+ ###[« Back to Getting Started](/getting-started/index.html)