This repository has been archived by the owner on Nov 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: optimized add on configuration (#16)
- Loading branch information
Showing
12 changed files
with
94 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
# OS | ||
.DS_Store | ||
|
||
# IDE | ||
.idea/ | ||
|
||
# Dependencies | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,41 @@ | ||
--- | ||
# General Info | ||
version: 0.0.7 | ||
slug: matterbridge | ||
name: Matterbridge | ||
description: Populate your Home Assistant instance as Matter Bridge | ||
slug: matterbridge | ||
version: 0.0.7 | ||
image: ghcr.io/t0bst4r/matterbridge-home-assistant-addon/{arch} | ||
options: | ||
home_assistant_client_config: '{}' | ||
schema: | ||
home_assistant_client_config: str | ||
url: https://github.com/t0bst4r/matterbridge-home-assistant-addon | ||
|
||
# Requirements | ||
homeassistant: 2024.1.0 | ||
|
||
# Permissions | ||
homeassistant_api: true | ||
host_network: true | ||
webui: http://[HOST]:[PORT:8283]/ | ||
|
||
# Architecture & Image Options | ||
# image: ghcr.io/t0bst4r/matterbridge-home-assistant-addon/{arch} | ||
init: false | ||
arch: | ||
- aarch64 | ||
- amd64 | ||
- armv7 | ||
- aarch64 | ||
webui: http://[HOST]:[PORT:8283]/ | ||
map: | ||
- addon_config:rw | ||
|
||
# Options & Schema | ||
options: | ||
include_domains: [ ] | ||
include_patterns: [ ] | ||
exclude_domains: [ ] | ||
exclude_patterns: [ ] | ||
schema: | ||
include_domains: | ||
- str? | ||
include_patterns: | ||
- str? | ||
exclude_domains: | ||
- str? | ||
exclude_patterns: | ||
- str? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
configuration: | ||
include_domains: | ||
name: Include Domains | ||
description: | | ||
List of domains to include (e.g. light, switch, media_player). | ||
If empty, all domains are included. | ||
include_patterns: | ||
name: Include Patterns | ||
description: | | ||
List of glob patterns to include entities (e.g. light.kitchen*). | ||
If empty, all entities are included. | ||
exclude_domains: | ||
name: Exclude Domains | ||
description: | | ||
List of domains to exclude (e.g. light, switch, media_player). | ||
Even included entities need to NOT match this domains. | ||
If empty, no domain is excluded. | ||
exclude_patterns: | ||
name: Exclude Patterns | ||
description: | | ||
List of glob patterns to exclude entities (e.g. media_player.*echo*). | ||
Even included entities need to NOT match this patterns. | ||
If empty, no entity is excluded. |