diff --git a/README.md b/README.md index ced17381..490d18de 100644 --- a/README.md +++ b/README.md @@ -129,6 +129,19 @@ HomeKit support for your Home Assistant instance using Homebridge [:books: Homebridge add-on documentation][addon-doc-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-doc-ide] + ## Releases Releases are based on [Semantic Versioning][semver], and use the format @@ -164,6 +177,7 @@ on the correct GitHub repository matching the add-on. - [Open an issue for the add-on: FTP][ftp-issue] - [Open an issue for the add-on: Home Assistant Control Panel][control-panel-issue] - [Open an issue for the add-on: Homebridge][homebridge-issue] +- [Open an issue for the add-on: IDE][ide-issue] For a general repository issue or add-on ideas [open an issue here][issue] @@ -276,6 +290,15 @@ SOFTWARE. [homebridge-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [homebridge-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg [homebridge-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg +[addon-ide]: https://github.com/hassio-addons/addon-ide/tree/v0.1.0 +[addon-doc-ide]: https://github.com/hassio-addons/addon-ide/blob/v0.1.0/README.md +[ide-issue]: https://github.com/hassio-addons/addon-ide/issues +[ide-version-shield]: https://img.shields.io/badge/version-v0.1.0-blue.svg +[ide-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/ide-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 [awesome-shield]: https://img.shields.io/badge/awesome%3F-yes-brightgreen.svg [discord-shield]: https://img.shields.io/discord/330944238910963714.svg [discord]: https://discord.gg/c5DvZ4e diff --git a/ide/CHANGELOG.md b/ide/CHANGELOG.md new file mode 100644 index 00000000..0dbcc08e --- /dev/null +++ b/ide/CHANGELOG.md @@ -0,0 +1 @@ +Initial release. \ No newline at end of file diff --git a/ide/config.json b/ide/config.json new file mode 100644 index 00000000..aaa6df6e --- /dev/null +++ b/ide/config.json @@ -0,0 +1,51 @@ +{ + "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}" +} \ No newline at end of file diff --git a/ide/logo.png b/ide/logo.png new file mode 100644 index 00000000..e514623e Binary files /dev/null and b/ide/logo.png differ