mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-02 09:17:35 +00:00
42 lines
1.2 KiB
HTML
42 lines
1.2 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>
|
|
|
|
{% 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>
|