From a2f155b849060d7e5d81b19d122d9f5f1525a3d9 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Thu, 19 Oct 2017 19:37:40 +0200 Subject: [PATCH] :sparkles: Adds new Hass.io add-on: Example --- example/README.md | 7 +++++++ example/config.json | 23 +++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 example/README.md create mode 100644 example/config.json diff --git a/example/README.md b/example/README.md new file mode 100644 index 00000000..e2660882 --- /dev/null +++ b/example/README.md @@ -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 \ No newline at end of file diff --git a/example/config.json b/example/config.json new file mode 100644 index 00000000..96a0a467 --- /dev/null +++ b/example/config.json @@ -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)" + } +} \ No newline at end of file