mirror of
https://github.com/hassio-addons/repository.git
synced 2025-05-07 04:31:25 +00:00
🎉 Release of add-on IDE v0.1.0
This commit is contained in:
parent
20c1b3c34b
commit
bfb246f645
3 changed files with 76 additions and 1 deletions
23
README.md
23
README.md
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
|
7
ide/README.md
Normal file
7
ide/README.md
Normal file
|
@ -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
ide/config.json
Normal file
47
ide/config.json
Normal file
|
@ -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}"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue