Adds new Hass.io add-on: Example

This commit is contained in:
Franck Nijhof 2017-10-19 19:37:40 +02:00
parent cda53be60c
commit a2f155b849
No known key found for this signature in database
GPG key ID: D62583BA8AB11CA3
2 changed files with 30 additions and 0 deletions

7
example/README.md Normal file
View file

@ -0,0 +1,7 @@
# Community Hass.io Add-on: Example
This is just a configuration stub to make the Hass.io repository work.
The add-on itself can be found at the following URL:
https://github.com/hassio-addons/addon-example

23
example/config.json Normal file
View file

@ -0,0 +1,23 @@
{
"name": "Example",
"version": "1.0.0",
"slug": "example",
"description": "Example add-on by Community Hass.io Add-ons",
"url": "https://github.com/hassio-addons/addon-example",
"startup": "application",
"arch": [
"aarch64",
"amd64",
"armhf",
"i386"
],
"boot": "auto",
"options": {
"log_level": "info",
"seconds_between_quotes": 5
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"seconds_between_quotes": "int(1,120)"
}
}