From d7596f63c313e9cf8645771f99765646debde1b1 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sun, 29 Oct 2017 20:38:04 +0100 Subject: [PATCH] :tada: Release of add-on AppDaemon v0.1.0 --- README.md | 22 ++++++++++++++++++++++ appdaemon/README.md | 7 +++++++ appdaemon/config.json | 30 ++++++++++++++++++++++++++++++ 3 files changed, 59 insertions(+) create mode 100644 appdaemon/README.md create mode 100644 appdaemon/config.json diff --git a/README.md b/README.md index 237a31f2..1ced5cb3 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,19 @@ https://github.com/hassio-addons/repository ## Add-ons provided by this repository +### ✓ [AppDaemon][addon-appdaemon] + +![Latest Version][appdaemon-version-shield] +![Supports armhf Architecture][appdaemon-armhf-shield] +![Supports aarch64 Architecture][appdaemon-aarch64-shield] +![Supports amd64 Architecture][appdaemon-amd64-shield] +![Supports i386 Architecture][appdaemon-i386-shield] +![Docker Pulls][appdaemon-pulls-shield] + +Python Apps and HADashboard for Home Assistant + +[:books: AppDaemon add-on documentation][addon-appdaemon] + ### ✓ [Example][addon-example] ![Latest Version][example-version-shield] @@ -136,6 +149,7 @@ You could also open an issue here on GitHub. Note, we use a separate GitHub repository for each add-on. Please ensure you are creating the issue on the correct GitHub repository matching the add-on. +- [Open an issue for the addon: AppDaemon][appdaemon-issue] - [Open an issue for the addon: Example][example-issue] - [Open an issue for the addon: Homebridge][homebridge-issue] - [Open an issue for the addon: SSH - Secure Shell][ssh-issue] @@ -185,11 +199,19 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +[addon-appdaemon]: https://github.com/hassio-addons/addon-appdaemon [addon-example]: https://github.com/hassio-addons/addon-example [addon-homebridge]: https://github.com/hassio-addons/addon-homebridge [addon-ssh]: https://github.com/hassio-addons/addon-ssh [addon-terminal]: https://github.com/hassio-addons/addon-terminal [addon-tor]: https://github.com/hassio-addons/addon-tor +[appdaemon-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg +[appdaemon-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg +[appdaemon-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg +[appdaemon-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg +[appdaemon-issue]: https://github.com/hassio-addons/addon-appdaemon/issues +[appdaemon-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/appdaemon-armhf.svg +[appdaemon-version-shield]: https://images.microbadger.com/badges/version/hassioaddons/appdaemon-armhf.svg [awesome-shield]: https://img.shields.io/badge/awesome%3F-yes-brightgreen.svg [bitcoin-shield]: https://img.shields.io/badge/donate-bitcoin-blue.svg [bitcoin]: https://blockchain.info/payment_request?address=3GVzgN6NpVtfXnyg5dQnaujtqVTEDBCtAH diff --git a/appdaemon/README.md b/appdaemon/README.md new file mode 100644 index 00000000..37440d5b --- /dev/null +++ b/appdaemon/README.md @@ -0,0 +1,7 @@ +# Community Hass.io Add-ons: AppDaemon + +This is just a configuration stub to make the Hass.io repository work. + +The add-on itself can be found at the following URL: + + diff --git a/appdaemon/config.json b/appdaemon/config.json new file mode 100644 index 00000000..3731dea8 --- /dev/null +++ b/appdaemon/config.json @@ -0,0 +1,30 @@ +{ + "name": "AppDaemon", + "version": "0.1.0", + "slug": "appdaemon", + "description": "Python Apps and HADashboard for Home Assistant", + "url": "https://github.com/hassio-addons/addon-appdaemon", + "startup": "application", + "boot": "auto", + "hassio_api": true, + "homeassistant_api": true, + "host_network": false, + "ports": { + "5050/tcp": 5050 + }, + "map": [ + "config:rw", + "shared:rw", + "ssl:rw" + ], + "options": { + "log_level": "info" + }, + "schema": { + "log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)" + }, + "environment": { + "LOG_FORMAT": "{LEVEL}: {MESSAGE}" + }, + "image": "hassioaddons/appdaemon-{arch}" +} \ No newline at end of file