From 9d3ea63632339042a01f2ecf25ac14093244b6bc Mon Sep 17 00:00:00 2001 From: Ryan Kraus Date: Wed, 2 Sep 2015 23:41:59 -0400 Subject: [PATCH] Escaped double dashes on getting started page. --- source/getting-started/index.markdown | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source/getting-started/index.markdown b/source/getting-started/index.markdown index 340a2ce71c6..70f072a9a4a 100644 --- a/source/getting-started/index.markdown +++ b/source/getting-started/index.markdown @@ -27,7 +27,7 @@ Installing and running Home Assistant on your local machine is easy. Make sure y

```bash pip3 install homeassistant -hass --open-ui +hass \-\-open-ui ```

Running these commands will:

@@ -42,7 +42,7 @@ hass --open-ui

Installation with Docker is straightforward. Adjust the following command so that /path/to/your/config/ points at the folder where you want to store your config and run it:

```bash -docker run -d --name="home-assistant" -v /path/to/your/config:/config -v /etc/localtime:/etc/localtime:ro --net=host balloob/home-assistant +docker run -d \-\-name="home-assistant" -v /path/to/your/config:/config -v /etc/localtime:/etc/localtime:ro \-\-net=host balloob/home-assistant ```

This will launch Home Assistant and serve its web interface from port 8123 on your Docker host.

@@ -61,7 +61,7 @@ Once that is complete, installing and running Home Assistant on your local machi

```bash pip3 install homeassistant -hass --open-ui +hass \-\-open-ui ```

Running these commands will:

@@ -87,15 +87,15 @@ hass --open-ui

Staying Up to Date

In order to update Home Assistant to the latest stable release, simply type the following into a console:

```bash -pip install --upgrade homeassistant +pip install \-\-upgrade homeassistant ```

If you would like to stay up to date with the newest unstable builds (alphas, betas, and release candidates), use this command:

```bash -pip install --upgrade --pre homeassistant +pip install \-\-upgrade \-\-pre homeassistant ```

What's Next

-

If you want to see what Home Assistant can do, you can start the demo mode by running hass --demo-mode. Home Assistant has a few other command line flags that can be displayed by running hass --help.

+

If you want to see what Home Assistant can do, you can start the demo mode by running hass \-\-demo-mode. Home Assistant has a few other command line flags that can be displayed by running hass \-\-help.

From here you may now start configuring Home Assistant to your liking. For more advanced users, the advanced configuration page contains brief tutorials on creating more advanced installations.