mirror of
https://github.com/hassio-addons/repository.git
synced 2025-05-06 20:21:26 +00:00
🎉 Release of add-on Home Assistant Control Panel v1.0.0
This commit is contained in:
parent
1c80b9228d
commit
9f32efd526
5 changed files with 70 additions and 0 deletions
22
README.md
22
README.md
|
@ -89,6 +89,19 @@ Python Apps and HADashboard using AppDaemon 3.x for Home Assistant
|
|||
|
||||
[:books: AppDaemon3 add-on documentation][addon-appdaemon3]
|
||||
|
||||
### ✓ [Home Assistant Control Panel][addon-control-panel]
|
||||
|
||||
![Latest Version][control-panel-version-shield]
|
||||
![Supports armhf Architecture][control-panel-armhf-shield]
|
||||
![Supports aarch64 Architecture][control-panel-aarch64-shield]
|
||||
![Supports amd64 Architecture][control-panel-amd64-shield]
|
||||
![Supports i386 Architecture][control-panel-i386-shield]
|
||||
![Docker Pulls][control-panel-pulls-shield]
|
||||
|
||||
Python Apps and HADashboard using AppDaemon 3.x for Home Assistant
|
||||
|
||||
[:books: Home Assistant Control Panel add-on documentation][addon-control-panel]
|
||||
|
||||
### ✓ [Example][addon-example]
|
||||
|
||||
![Latest Version][example-version-shield]
|
||||
|
@ -231,6 +244,7 @@ on the correct GitHub repository matching the add-on.
|
|||
- [Open an issue for the addon: AirSonos][airsonos-issue]
|
||||
- [Open an issue for the addon: AppDaemon2][appdaemon-issue]
|
||||
- [Open an issue for the addon: AppDaemon3][appdaemon3-issue]
|
||||
- [Open an issue for the addon: Home Assistant Control Panel][control-panel-issue]
|
||||
- [Open an issue for the addon: Example][example-issue]
|
||||
- [Open an issue for the addon: FTP][ftp-issue]
|
||||
- [Open an issue for the addon: Homebridge][homebridge-issue]
|
||||
|
@ -287,6 +301,7 @@ SOFTWARE.
|
|||
[addon-airsonos]: https://github.com/hassio-addons/addon-airsonos
|
||||
[addon-appdaemon]: https://github.com/hassio-addons/addon-appdaemon
|
||||
[addon-appdaemon3]: https://github.com/hassio-addons/addon-appdaemon3
|
||||
[addon-control-panel]: https://github.com/hassio-addons/addon-control-panel
|
||||
[addon-example]: https://github.com/hassio-addons/addon-example
|
||||
[addon-ftp]: https://github.com/hassio-addons/addon-ftp
|
||||
[addon-homebridge]: https://github.com/hassio-addons/addon-homebridge
|
||||
|
@ -323,6 +338,13 @@ SOFTWARE.
|
|||
[appdaemon3-issue]: https://github.com/hassio-addons/addon-appdaemon3/issues
|
||||
[appdaemon3-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/appdaemon3-armhf.svg
|
||||
[appdaemon3-version-shield]: https://images.microbadger.com/badges/version/hassioaddons/appdaemon3-armhf.svg
|
||||
[control-panel-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
|
||||
[control-panel-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
|
||||
[control-panel-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
|
||||
[control-panel-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
|
||||
[control-panel-issue]: https://github.com/hassio-addons/addon-control-panel/issues
|
||||
[control-panel-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/control-panel-armhf.svg
|
||||
[control-panel-version-shield]: https://images.microbadger.com/badges/version/hassioaddons/control-panel-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
|
||||
|
|
7
control-panel/README.md
Normal file
7
control-panel/README.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
# Community Hass.io Add-ons: Home Assistant Control Panel
|
||||
|
||||
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-control-panel>
|
41
control-panel/config.json
Normal file
41
control-panel/config.json
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "Home Assistant Control Panel",
|
||||
"version": "1.0.0",
|
||||
"slug": "control-panel",
|
||||
"description": "Simple to use control panel for the ultimate home automation setup",
|
||||
"url": "https://community.home-assistant.io/t/community-hass-io-add-on-home-assistant-control-panel/49634?u=frenck",
|
||||
"webui": "[PROTO:ssl]://[HOST]:[PORT:7080]",
|
||||
"startup": "system",
|
||||
"arch": [
|
||||
"aarch64",
|
||||
"amd64",
|
||||
"armhf",
|
||||
"i386"
|
||||
],
|
||||
"boot": "auto",
|
||||
"hassio_api": true,
|
||||
"map": [
|
||||
"ssl"
|
||||
],
|
||||
"ports": {
|
||||
"7080/tcp": 7080
|
||||
},
|
||||
"options": {
|
||||
"log_level": "info",
|
||||
"ssl": false,
|
||||
"certfile": "fullchain.pem",
|
||||
"keyfile": "privkey.pem",
|
||||
"ipv6": false
|
||||
},
|
||||
"schema": {
|
||||
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
|
||||
"ssl": "bool",
|
||||
"certfile": "str",
|
||||
"keyfile": "str",
|
||||
"ipv6": "bool"
|
||||
},
|
||||
"environment": {
|
||||
"LOG_FORMAT": "{LEVEL}: {MESSAGE}"
|
||||
},
|
||||
"image": "hassioaddons/control-panel-{arch}"
|
||||
}
|
BIN
control-panel/icon.png
Normal file
BIN
control-panel/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.6 KiB |
BIN
control-panel/logo.png
Normal file
BIN
control-panel/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
Loading…
Add table
Add a link
Reference in a new issue