mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-01 00:37:35 +00:00

* Added note calling out Hass.io only Given the ongoing confusion that add-ons cause, adding a note box to call out that add-ons are Hass.io only. * Fix typo
46 lines
1.4 KiB
HTML
46 lines
1.4 KiB
HTML
---
|
|
layout: page
|
|
title: "Hass.io Add-ons"
|
|
description: "List of the built-in add-ons of Hass.io."
|
|
date: 2017-04-30 13:35
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
regenerate: false
|
|
---
|
|
|
|
<p>Add-ons for Hass.io allow the user to extend the functionality around Home Assistant. This can be running an application that Home Assistant can integrate with (like an MQTT broker) or to share the configuration via Samba for easy editing from other computers. Add-ons can be configured via the Hass.io panel in Home Assistant.</p>
|
|
|
|
<p>
|
|
Check the Hass.io forums for <a href='https://community.home-assistant.io/tags/hassio-repository'>add-on repositories managed by the community</a>.
|
|
</p>
|
|
|
|
<p class='note'>
|
|
Add-ons are only available if you've used the Hass.io installer. If you installed Home Assistant using any other method then you cannot use add-ons (but you can achieve the same result manually).
|
|
</p>
|
|
|
|
{% assign addons = site.addons | sort: 'title' %}
|
|
|
|
<h3>{% linkable_title Featured add-ons %}</h3>
|
|
|
|
<ul>
|
|
{% for addon in addons %}{% if addon.featured %}
|
|
<li>
|
|
<a href='{{ addon.url }}'>{{ addon.title }}</a><br>
|
|
{{ addon.description }}
|
|
</li>
|
|
{% endif %}{% endfor %}
|
|
</ul>
|
|
|
|
<h3>{% linkable_title Other add-ons %}</h3>
|
|
|
|
<ul>
|
|
{% for addon in addons %}{% if addon.featured != true %}
|
|
<li>
|
|
<a href='{{ addon.url }}'>{{ addon.title }}</a><br>
|
|
{{ addon.description }}
|
|
</li>
|
|
{% endif %}{% endfor %}
|
|
</ul>
|