diff --git a/README.md b/README.md index d8cdb5e..a662511 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,20 @@ -# iq_notify +# IqNotify - Intelligent notifications in Home Assistant + +[![hacs_badge](https://img.shields.io/badge/HACS-Custom-41BDF5.svg?style=for-the-badge)](https://github.com/hacs/integration) ## How to install +### HACS method +1. Add this repository as a custom-repository into HACS +2. Click download +3. Restart Home Assistant + +### Manual method 1. Clone repository into $HASS_HOME/custom_components/iq_notify. 2. Restart Home Assistant. -3. Update your configuration.yaml - example below. + +### Configuration +- Update your configuration.yaml - example below. The contents of this repository should be in a directory named `iq_notify` inside `custom_components` of your Home Assistant. diff --git a/custom_components/.DS_Store b/custom_components/.DS_Store new file mode 100644 index 0000000..e3695f4 Binary files /dev/null and b/custom_components/.DS_Store differ diff --git a/__init__.py b/custom_components/iq_notify/__init__.py similarity index 100% rename from __init__.py rename to custom_components/iq_notify/__init__.py diff --git a/custom_components/iq_notify/manifest.json b/custom_components/iq_notify/manifest.json new file mode 100644 index 0000000..fb6b426 --- /dev/null +++ b/custom_components/iq_notify/manifest.json @@ -0,0 +1,10 @@ +{ + "domain": "iq_notify", + "name": "IqNotify", + "version": "1.0.0", + "requirements": [], + "dependencies": [], + "codeowners": ["@cadavre"], + "issue_tracker": "https://github.com/cadavre/iq_notify/issues", + "documentation": "https://github.com/cadavre/iq_notify" +} \ No newline at end of file diff --git a/notify.py b/custom_components/iq_notify/notify.py similarity index 100% rename from notify.py rename to custom_components/iq_notify/notify.py diff --git a/hacs.json b/hacs.json new file mode 100644 index 0000000..3968446 --- /dev/null +++ b/hacs.json @@ -0,0 +1,4 @@ +{ + "name": "IqNotify", + "render_readme": true +} \ No newline at end of file diff --git a/manifest.json b/manifest.json deleted file mode 100644 index 2d035c8..0000000 --- a/manifest.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "domain": "iq_notify", - "name": "IqNotify", - "version": "1.0.0", - "requirements": [], - "dependencies": [], - "codeowners": [] -}