🎉 Release of add-on Node-RED 0.1.0

This commit is contained in:
Community Hass.io Add-ons Bot 2018-06-02 08:08:00 +00:00
parent d524fb11fa
commit 9d1d9a9606
6 changed files with 147 additions and 0 deletions

View file

@ -176,6 +176,19 @@ Scalable datastore for metrics, events, and real-time analytics
[:books: InfluxDB add-on documentation][addon-doc-influxdb]
### ✓ [Node-RED][addon-node-red]
![Latest Version][node-red-version-shield]
![Supports armhf Architecture][node-red-armhf-shield]
![Supports aarch64 Architecture][node-red-aarch64-shield]
![Supports amd64 Architecture][node-red-amd64-shield]
![Supports i386 Architecture][node-red-i386-shield]
![Docker Pulls][node-red-pulls-shield]
Flow-based programming for the Internet of Things
[:books: Node-RED add-on documentation][addon-doc-node-red]
### ✓ [Pi-hole][addon-pi-hole]
![Latest Version][pi-hole-version-shield]
@ -298,6 +311,7 @@ on the correct GitHub repository matching the add-on.
- [Open an issue for the add-on: Homebridge][homebridge-issue]
- [Open an issue for the add-on: IDE][ide-issue]
- [Open an issue for the add-on: InfluxDB][influxdb-issue]
- [Open an issue for the add-on: Node-RED][node-red-issue]
- [Open an issue for the add-on: Pi-hole][pi-hole-issue]
- [Open an issue for the add-on: Plex Media Server][plex-issue]
- [Open an issue for the add-on: SSH - Secure Shell][ssh-issue]
@ -453,6 +467,15 @@ SOFTWARE.
[influxdb-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[influxdb-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[influxdb-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-node-red]: https://github.com/hassio-addons/addon-node-red/tree/v0.1.0
[addon-doc-node-red]: https://github.com/hassio-addons/addon-node-red/blob/v0.1.0/README.md
[node-red-issue]: https://github.com/hassio-addons/addon-node-red/issues
[node-red-version-shield]: https://img.shields.io/badge/version-v0.1.0-blue.svg
[node-red-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/node-red-armhf.svg
[node-red-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[node-red-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[node-red-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[node-red-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-pi-hole]: https://github.com/hassio-addons/addon-pi-hole/tree/v1.1.1
[addon-doc-pi-hole]: https://github.com/hassio-addons/addon-pi-hole/blob/v1.1.1/README.md
[pi-hole-issue]: https://github.com/hassio-addons/addon-pi-hole/issues

1
node-red/CHANGELOG.md Normal file
View file

@ -0,0 +1 @@
🎉 Initial release!

35
node-red/README.md Normal file
View file

@ -0,0 +1,35 @@
# Community Hass.io Add-ons: Example
[![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield]
[![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum]
[![Buy me a coffee][buymeacoffee-shield]][buymeacoffee]
Flow-based programming for the Internet of Things.
## About
Node-RED is a programming tool for wiring together hardware devices,
APIs and online services in new and interesting ways.
It provides a browser-based editor that makes it easy to wire together flows
using the wide range of nodes in the palette that can be deployed to its
runtime in a single click.
[Click here for the full documentation][docs]
![Node-RED in the Home Assistant Frontend][screenshot]
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg
[forum]: https://community.home-assistant.io/t/?u=frenck
[discord-shield]: https://img.shields.io/discord/330944238910963714.svg
[discord]: https://discord.gg/c5DvZ4e
[maintenance-shield]: https://img.shields.io/maintenance/yes/2018.svg
[release-shield]: https://img.shields.io/badge/version-v0.1.0-blue.svg
[release]: https://github.com/hassio-addons/addon-node-red/tree/v0.1.0
[docs]: https://github.com/hassio-addons/addon-node-red/blob/v0.1.0/README.md
[buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg
[buymeacoffee]: https://www.buymeacoffee.com/frenck
[screenshot]: https://github.com/hassio-addons/addon-node-red/raw/master/images/screenshot.png

88
node-red/config.json Normal file
View file

@ -0,0 +1,88 @@
{
"name": "Node-RED",
"version": "0.1.0",
"slug": "nodered",
"description": "Flow-based programming for the Internet of Things",
"url": "https://community.home-assistant.io/?u=frenck",
"webui": "[PROTO:ssl]://[HOST]:[PORT:1880]",
"startup": "application",
"arch": [
"aarch64",
"amd64",
"armhf",
"i386"
],
"boot": "auto",
"hassio_api": true,
"homeassistant_api": true,
"host_network": true,
"privileged": [],
"map": [
"config:rw",
"ssl"
],
"options": {
"log_level": "info",
"credential_secret": "",
"users": [
{
"username": "MarryPoppins",
"password": "Supercalifragilisticexpialidocious",
"permissions": "*"
}
],
"http_node": {
"username": "",
"password": ""
},
"http_static": {
"username": "",
"password": ""
},
"port": 1880,
"ssl": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"require_ssl": true,
"system_packages": [],
"npm_packages": [],
"init_commands": []
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"credential_secret": "str",
"users": [
{
"username": "str",
"password": "str",
"permissions": "str"
}
],
"http_node": {
"username": "str",
"password": "str"
},
"http_static": {
"username": "str",
"password": "str"
},
"port": "port",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"require_ssl": "bool",
"system_packages": [
"str"
],
"npm_packages": [
"str"
],
"init_commands": [
"str"
]
},
"environment": {
"LOG_FORMAT": "{LEVEL}: {MESSAGE}"
},
"image": "hassioaddons/node-red-{arch}"
}

BIN
node-red/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

BIN
node-red/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB