mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-02-01 17:37:44 +01:00
83 lines
3.7 KiB
Django/Jinja
83 lines
3.7 KiB
Django/Jinja
# Home assistant add-on: alexbelgium
|
|
|
|
<!-- markdownlint-disable MD033 -->
|
|
|
|
[![Donate][donation-badge]](https://www.buymeacoffee.com/alexbelgium)
|
|

|
|
|
|
[donation-badge]: https://img.shields.io/badge/Buy%20me%20a%20coffee-%23d32f2f?logo=buy-me-a-coffee&style=flat&logoColor=white
|
|
|
|
[](https://www.codacy.com/gh/alexbelgium/hassio-addons/dashboard?utm_source=github.com&utm_medium=referral&utm_content=alexbelgium/hassio-addons&utm_campaign=Badge_Grade)
|
|
[](https://github.com/marketplace/actions/super-linter)
|
|
[](https://github.com/alexbelgium/hassio-addons/actions/workflows/builder.yaml)
|
|
|
|
[support-badge]: https://camo.githubusercontent.com/f4dbb995049f512fdc97fcc9e022ac243fa38c408510df9d46c7467d0970d959/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f537570706f72742d7468726561642d677265656e2e737667
|
|
|
|
_Thanks to everyone having starred my repo! To star it click on the image below, then it will be on top right. Thanks!_
|
|
|
|
[](https://github.com/alexbelgium/hassio-addons/stargazers)
|
|
|
|
_Thanks to all contributors !_
|
|
|
|
<a href="https://github.com/alexbelgium/hassio-addons/graphs/contributors">
|
|
<img src="https://contrib.rocks/image?repo=alexbelgium/hassio-addons" />
|
|
</a>
|
|
|
|
## About
|
|
|
|
Home Assistant allows anyone to create add-on repositories to share their
|
|
add-ons for Home Assistant easily. This repository is one of those repositories,
|
|
providing extra Home Assistant add-ons for your installation.
|
|
|
|
The primary goal of this project is to provide you (as a Home Assistant user)
|
|
with additional, high quality, add-ons that allow you to take your automated
|
|
home to the next level.
|
|
|
|
## Installation
|
|
|
|
In the Home Assistant add-on store, a possibility to add a repository is provided, and [documented on the Home Assistant website](https://home-assistant.io/hassio/installing_third_party_addons).
|
|
|
|
Use the following URL to add this repository:
|
|
|
|
```txt
|
|
{{ repo }}
|
|
```
|
|
|
|
## Add-ons provided by this repository
|
|
|
|
{% for addon in addons %} : {{ addon.description }}
|
|
### ✓ [{{ addon.name }}][addon-{{ addon.target }}]
|
|
|
|
![Latest Version][{{ addon.target }}-version-shield]
|
|
![Supports armhf Architecture][{{ addon.target }}-armhf-shield]
|
|
![Supports armv7 Architecture][{{ addon.target }}-armv7-shield]
|
|
![Supports aarch64 Architecture][{{ addon.target }}-aarch64-shield]
|
|
![Supports amd64 Architecture][{{ addon.target }}-amd64-shield]
|
|
![Supports i386 Architecture][{{ addon.target }}-i386-shield]
|
|
|
|
{% endfor %}
|
|
|
|
## Support
|
|
|
|
Got questions?
|
|
|
|
You have several options to get them answered:
|
|
|
|
- The Home Assistant [Community Forum][forum].
|
|
- This repository issues list
|
|
|
|
{% for addon in addons %}
|
|
[addon-{{ addon.target }}]: {{ addon.repo }}/tree/{{ addon.version }}
|
|
[addon-doc-{{ addon.target}}]: {{ addon.repo }}/blob/{{ addon.version }}/README.md
|
|
[{{ addon.target }}-issue]: {{ addon.repo }}/issues
|
|
[{{ addon.target }}-version-shield]: https://img.shields.io/badge/version-{{ addon.version }}-blue.svg
|
|
{% for arch in ['aarch64', 'amd64', 'armhf', 'armv7', 'i386'] %}
|
|
{% if arch in addon.archs %}
|
|
[{{ addon.target }}-{{ arch }}-shield]: https://img.shields.io/badge/{{ arch }}-yes-green.svg
|
|
{% else %}
|
|
[{{ addon.target }}-{{ arch }}-shield]: https://img.shields.io/badge/{{ arch }}-no-red.svg
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
[forum]: https://community.home-assistant.io/t/my-custom-repo
|