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