Skip to content

Commit

Permalink
🎉 Release of add-on IDE v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck committed Nov 26, 2017
1 parent 20c1b3c commit bfb246f
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 1 deletion.
23 changes: 22 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,19 @@ control your Home Assistant through via Apple devices (including Siri).

[:books: Homebridge add-on documentation][addon-homebridge]

### ✓ [IDE][addon-ide]

![Latest Version][ide-version-shield]
![Supports armhf Architecture][ide-armhf-shield]
![Supports aarch64 Architecture][ide-aarch64-shield]
![Supports amd64 Architecture][ide-amd64-shield]
![Supports i386 Architecture][ide-i386-shield]
![Docker Pulls][ide-pulls-shield]

Advanced IDE for Home Assistant, based on Cloud9 IDE

[:books: IDE add-on documentation][addon-ide]

### ✓ [Pi-hole][addon-pi-hole]

![Latest Version][pi-hole-version-shield]
Expand Down Expand Up @@ -165,6 +178,7 @@ 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: IDE][ide-issue]
- [Open an issue for the addon: Pi-hole][pi-hole-issue]
- [Open an issue for the addon: SSH - Secure Shell][ssh-issue]
- [Open an issue for the addon: Terminal][terminal-issue]
Expand Down Expand Up @@ -216,6 +230,7 @@ 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-ide]: https://github.com/hassio-addons/addon-ide
[addon-pi-hole]: https://github.com/hassio-addons/addon-pi-hole
[addon-ssh]: https://github.com/hassio-addons/addon-ssh
[addon-terminal]: https://github.com/hassio-addons/addon-terminal
Expand Down Expand Up @@ -256,6 +271,13 @@ SOFTWARE.
[homebridge-issue]: https://github.com/hassio-addons/addon-homebridge/issues
[homebridge-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/homebridge-armhf.svg
[homebridge-version-shield]: https://images.microbadger.com/badges/version/hassioaddons/homebridge-armhf.svg
[ide-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[ide-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[ide-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[ide-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[ide-issue]: https://github.com/hassio-addons/addon-ide/issues
[ide-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/ide-armhf.svg
[ide-version-shield]: https://images.microbadger.com/badges/version/hassioaddons/ide-armhf.svg
[issue]: https://github.com/hassio-addons/repository/issues
[keepchangelog]: http://keepachangelog.com/en/1.0.0/
[license-shield]: https://img.shields.io/github/license/hassio-addons/repository.svg
Expand All @@ -273,7 +295,6 @@ SOFTWARE.
[pi-hole-version-shield]: https://images.microbadger.com/badges/version/hassioaddons/pi-hole-armhf.svg
[project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg
[reddit]: https://reddit.com/r/homeassistant
[reddit]: https://reddit.com/r/homeassistant
[semver]: http://semver.org/spec/v2.0.0.html
[ssh-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[ssh-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
Expand Down
7 changes: 7 additions & 0 deletions ide/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Community Hass.io Add-ons: IDE

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-ide>
47 changes: 47 additions & 0 deletions ide/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"name": "IDE",
"version": "0.1.0",
"slug": "ide",
"description": "Advanced IDE for Home Assistant, based on Cloud9 IDE",
"url": "https://github.com/hassio-addons/addon-ide",
"webui": "[PROTO:ssl]://[HOST]:[PORT:8321]",
"startup": "services",
"boot": "auto",
"hassio_api": true,
"homeassistant_api": true,
"host_network": false,
"ports": {
"8321/tcp": 8321
},
"map": [
"config:rw",
"ssl:rw",
"addons:rw",
"share:rw",
"backup:rw"
],
"options": {
"log_level": "info",
"username": "",
"password": "",
"ssl": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"packages": [],
"init_commands": []
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"username": "str",
"password": "str",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"packages": ["str"],
"init_commands": ["str"]
},
"environment": {
"LOG_FORMAT": "{LEVEL}: {MESSAGE}"
},
"image": "hassioaddons/ide-{arch}"
}

0 comments on commit bfb246f

Please sign in to comment.