diff --git a/README.md b/README.md index 6fc53163a..5c99bebaf 100644 --- a/README.md +++ b/README.md @@ -158,6 +158,19 @@ Advanced IDE for Home Assistant, based on Cloud9 IDE [:books: IDE add-on documentation][addon-doc-ide] +### ✓ [Jupyter][addon-jupyter] + +![Latest Version][jupyter-version-shield] +![Supports armhf Architecture][jupyter-armhf-shield] +![Supports aarch64 Architecture][jupyter-aarch64-shield] +![Supports amd64 Architecture][jupyter-amd64-shield] +![Supports i386 Architecture][jupyter-i386-shield] +![Docker Pulls][jupyter-pulls-shield] + +Create documents containing live code, equations, visualizations, and explanatory text. + +[:books: Jupyter add-on documentation][addon-doc-jupyter] + ### ✓ [Pi-hole][addon-pi-hole] ![Latest Version][pi-hole-version-shield] @@ -252,6 +265,7 @@ on the correct GitHub repository matching the add-on. - [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] +- [Open an issue for the add-on: Jupyter][jupyter-issue] - [Open an issue for the add-on: Pi-hole][pi-hole-issue] - [Open an issue for the add-on: SSH - Secure Shell][ssh-issue] - [Open an issue for the add-on: Shinobi Pro][shinobi-issue] @@ -387,6 +401,15 @@ SOFTWARE. [ide-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [ide-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg [ide-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg +[addon-jupyter]: https://github.com/hassio-addons/addon-jupyter/tree/92dc6fa +[addon-doc-jupyter]: https://github.com/hassio-addons/addon-jupyter/blob/92dc6fa/README.md +[jupyter-issue]: https://github.com/hassio-addons/addon-jupyter/issues +[jupyter-version-shield]: https://img.shields.io/badge/version-92dc6fa-blue.svg +[jupyter-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/jupyter-armhf.svg +[jupyter-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg +[jupyter-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg +[jupyter-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg +[jupyter-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg [addon-pi-hole]: https://github.com/hassio-addons/addon-pi-hole/tree/34a735f [addon-doc-pi-hole]: https://github.com/hassio-addons/addon-pi-hole/blob/34a735f/README.md [pi-hole-issue]: https://github.com/hassio-addons/addon-pi-hole/issues diff --git a/jupyter/CHANGELOG.md b/jupyter/CHANGELOG.md new file mode 100644 index 000000000..40cad7315 --- /dev/null +++ b/jupyter/CHANGELOG.md @@ -0,0 +1,3 @@ +2018/05/17 20:48 UTC - [92dc6fa](https://github.com/hassio-addons/addon-jupyter/commit/92dc6fa3986076e25d660cee1b12ad5565c65218) by [@frenck](https://github.com/frenck) +> :shirt: Shellcheck fixes + diff --git a/jupyter/README.md b/jupyter/README.md new file mode 100644 index 000000000..e48ba6af2 --- /dev/null +++ b/jupyter/README.md @@ -0,0 +1,46 @@ +# Community Hass.io Add-ons: Jupyter + +[![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] + +Lorem ipsum + +## About + +Lorem ipsum + +[Click here for the full documentation][docs] + +## WARNING! THIS IS AN EDGE VERSION! + +This Hass.io Add-ons repository contains edge builds of add-ons. Edge builds +add-ons are based upon the latest development version. + +- They may not work at all. +- They might stop working at any time. +- They could have a negative impact on your system. + +This repository was created for: + +- Anybody willing to test. +- Anybody interested in trying out upcoming add-ons or add-on features. +- Developers. + +If you are more interested in stable releases of our add-ons: + + + +[buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg +[buymeacoffee]: https://www.buymeacoffee.com/frenck +[discord-shield]: https://img.shields.io/discord/330944238910963714.svg +[discord]: https://discord.gg/c5DvZ4e +[docs]: https://github.com/hassio-addons/addon-jupyter/blob/92dc6fa/README.md +[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg +[forum]: https://community.home-assistant.io/?u=frenck +[maintenance-shield]: https://img.shields.io/maintenance/yes/2018.svg +[project-stage-shield]: https://img.shields.io/badge/project%20stage-concept-red.svg +[release-shield]: https://img.shields.io/badge/version-92dc6fa-blue.svg +[release]: https://github.com/hassio-addons/addon-jupyter/tree/92dc6fa \ No newline at end of file diff --git a/jupyter/config.json b/jupyter/config.json new file mode 100644 index 000000000..3afed05b6 --- /dev/null +++ b/jupyter/config.json @@ -0,0 +1,42 @@ +{ + "name": "Jupyter", + "version": "92dc6fa", + "slug": "jupyter", + "description": "Create documents containing live code, equations, visualizations, and explanatory text.", + "url": "https://github.com/hassio-addons/addon-jupyter", + "startup": "application", + "arch": [ + "aarch64", + "amd64", + "armhf", + "i386" + ], + "boot": "auto", + "hassio_api": true, + "homeassistant_api": false, + "host_network": false, + "ports": { + "8888/tcp": 8888 + }, + "map": [ + "config:rw", + "share:rw", + "ssl" + ], + "options": { + "log_level": "info", + "ssl": false, + "certfile": "fullchain.pem", + "keyfile": "privkey.pem" + }, + "schema": { + "log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)", + "ssl": "bool", + "certfile": "str", + "keyfile": "str" + }, + "environment": { + "LOG_FORMAT": "{LEVEL}: {MESSAGE}" + }, + "image": "hassioaddons/jupyter-{arch}" +} \ No newline at end of file diff --git a/jupyter/icon.png b/jupyter/icon.png new file mode 100644 index 000000000..20e4baec6 Binary files /dev/null and b/jupyter/icon.png differ diff --git a/jupyter/logo.png b/jupyter/logo.png new file mode 100644 index 000000000..2301809c1 Binary files /dev/null and b/jupyter/logo.png differ