🎉 Release of add-on AppDaemon v0.1.0

This commit is contained in:
Franck Nijhof 2017-10-29 20:38:04 +01:00
parent 642ce4eb70
commit d7596f63c3
No known key found for this signature in database
GPG key ID: D62583BA8AB11CA3
3 changed files with 59 additions and 0 deletions

7
appdaemon/README.md Normal file
View file

@ -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:
<https://github.com/hassio-addons/addon-appdaemon>

30
appdaemon/config.json Normal file
View file

@ -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}"
}