Update configuration samples (#5041)

* Update configuration samples

* Minor changes
This commit is contained in:
Fabian Affolter 2018-03-29 10:02:47 +02:00 committed by GitHub
parent 41a1a06af1
commit 2851b2a606
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
50 changed files with 473 additions and 312 deletions

View file

@ -15,6 +15,8 @@ ha_release: 0.48
The `shiftr` component makes it possible to transfer details collected with Home Assistant to [Shiftr.io](https://shiftr.io) and visualize the flow of the information. Keep in mind that your details will be public!
## {% linkable_title Configuration %}
Create a new [namespace](https://shiftr.io/new) and generate a new token. You will need to use `Key (Username)` and `Secret (Password)` to setup the component.
To use the `shiftr` component in your installation, add the following to your `configuration.yaml` file:
@ -22,12 +24,18 @@ To use the `shiftr` component in your installation, add the following to your `c
```yaml
# Example configuration.yaml entry
shiftr:
username: 63d8187f
password: 32fd92de6a59c3e2
username: YOUR_NAMESPACE_USERNAME
password: YOUR_NAMESPACE_PASSWORD
```
Configuration variables:
- **username** (*Required*): Username for the namespace.
- **password** (*Required*): Password for the namespace.
{% configuration %}
username:
description: Username for the Shiftr namespace.
required: true
type: string
password:
description: Password for the Shiftr namespace.
required: true
type: string
{% endconfiguration %}