Merge branch 'current' into release-0-60

This commit is contained in:
Fabian Affolter 2017-12-17 16:04:27 +01:00 committed by GitHub
commit 824d9266f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 238 additions and 153 deletions

View file

@ -85,21 +85,23 @@ $ git remote add upstream https://github.com/home-assistant/home-assistant.git
### {% linkable_title Setting up virtual environment %}
If you plan on providing isolation to your environment using [`venv`](https://docs.python.org/3.4/library/venv.html). Within the `home-assistant` directory, create and activate your virtual environment.
To isolate your environment from the rest of the system, set up a [`venv`](https://docs.python.org/3.4/library/venv.html). Within the `home-assistant` directory, create and activate your virtual environment.
```bash
$ python3 -m venv venv
$ source venv/bin/activate
$ python3 -m venv .
$ source bin/activate
```
### {% linkable_title Setup and Run %}
Install the requirements with a provided script named `setup`.
```bash
$ cd home-assistant
$ script/setup
```
* Run `hass` to invoke your local installation.
Invoke your installation.
```bash
$ hass
```
### {% linkable_title Logging %}