diff --git a/homeassistant/README.md b/homeassistant/README.md
new file mode 100644
index 0000000..242a520
--- /dev/null
+++ b/homeassistant/README.md
@@ -0,0 +1,3 @@
+# Home Assistant
+
+Some Home Assistant tips
diff --git a/homeassistant/gotify-logo.png b/homeassistant/gotify-logo.png
new file mode 100644
index 0000000..fa3e73b
Binary files /dev/null and b/homeassistant/gotify-logo.png differ
diff --git a/homeassistant/gotify-notification-action.png b/homeassistant/gotify-notification-action.png
new file mode 100644
index 0000000..ef083a6
Binary files /dev/null and b/homeassistant/gotify-notification-action.png differ
diff --git a/homeassistant/gotify.md b/homeassistant/gotify.md
new file mode 100644
index 0000000..3d97cf6
--- /dev/null
+++ b/homeassistant/gotify.md
@@ -0,0 +1,26 @@
+# Gotify Notifications
+
+[Gotify](https://gotify.net/) is a self hosted push notification service.
+
+
+
+We can use the generic [REST](https://www.home-assistant.io/integrations/notify.rest/) provider.
+
+Add a new notify service in `/config/configuration.yaml`
+
+```yaml
+notify:
+ - name: gotify
+ platform: rest
+ resource: https://gotify.yourdomain.tld/message
+ method: POST
+ headers:
+ X-Gotify-Key: your-gotify-api-key
+ title_param_name: title
+ message_param_name: message
+ target_param_name: priority
+```
+
+This notification provider can be used in an automation like this, notice how the priority can be set with the `target` attribute:
+
+