adding ha addon support
This commit is contained in:
parent
0425f6e8df
commit
933c450942
14
Dockerfile
Normal file
14
Dockerfile
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
ARG BUILD_FROM
|
||||||
|
FROM $BUILD_FROM
|
||||||
|
|
||||||
|
COPY ./package.json ./
|
||||||
|
COPY ./package-lock.json ./
|
||||||
|
COPY ./src ./src
|
||||||
|
COPY ./tsconfig.json ./
|
||||||
|
RUN npm install
|
||||||
|
RUN npm install ts-node
|
||||||
|
|
||||||
|
COPY run.sh /
|
||||||
|
RUN chmod a+x /run.sh
|
||||||
|
|
||||||
|
CMD [ "/run.sh" ]
|
9
config.yml
Normal file
9
config.yml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
name: "HA Matter Bridge"
|
||||||
|
version: "1.0.0"
|
||||||
|
slug: ha-matter-bridge
|
||||||
|
description: >-
|
||||||
|
"
|
||||||
|
This project serves as a proof of concept to connect HomeAssistant devices to Voice Assistants through the Matter Protocol."
|
||||||
|
init: false
|
||||||
|
arch:
|
||||||
|
- amd64
|
5
options.yml
Normal file
5
options.yml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
message: "settings"
|
||||||
|
settings:
|
||||||
|
- HA_HOST: localhost
|
||||||
|
HA_PORT: 8123
|
||||||
|
HA_ACCESS_TOKEN: "your acces token"
|
1
repository.yml
Normal file
1
repository.yml
Normal file
@ -0,0 +1 @@
|
|||||||
|
name: ha-matter-bridge
|
5
schema.yml
Normal file
5
schema.yml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
message: str
|
||||||
|
settings:
|
||||||
|
- HA_HOST: str
|
||||||
|
HA_PORT: int
|
||||||
|
HA_ACCESS_TOKEN: str
|
Loading…
Reference in New Issue
Block a user