diff --git a/addons/gazpar2haws/build.template.yaml b/addons/gazpar2haws/build.template.yaml deleted file mode 100644 index 0f90231..0000000 --- a/addons/gazpar2haws/build.template.yaml +++ /dev/null @@ -1,14 +0,0 @@ ---- -build_from: - aarch64: ghcr.io/home-assistant/aarch64-base-python:3.12-alpine3.20 - amd64: ghcr.io/home-assistant/amd64-base-python:3.12-alpine3.20 - armhf: ghcr.io/home-assistant/armhf-base-python:3.12-alpine3.20 - armv7: ghcr.io/home-assistant/armv7-base-python:3.12-alpine3.20 - i386: ghcr.io/home-assistant/i386-base-python:3.12-alpine3.20 -labels: - org.opencontainers.image.title: "Home Assistant Add-on: Gazpar2HAWS add-on" - org.opencontainers.image.description: "Gateway that reads data history from the GrDF (French gas provider) meter and send it to Home Assistant energy dashboard" - org.opencontainers.image.source: "https://github.com/ssenart/gazpar2haws" - org.opencontainers.image.licenses: "MIT" -args: - GAZPAR2HAWS_VERSION: "${PACKAGE_VERSION}" \ No newline at end of file diff --git a/addons/gazpar2haws/config.template.yaml b/addons/gazpar2haws/config.template.yaml deleted file mode 100644 index 840f261..0000000 --- a/addons/gazpar2haws/config.template.yaml +++ /dev/null @@ -1,31 +0,0 @@ -name: "Gazpar2HAWS" -description: "Gazpar2HAWS is a gateway that reads data history from the GrDF (French gas provider) meter and send it to Home Assistant using WebSocket interface." -version: "${PACKAGE_VERSION}" -slug: "gazpar2haws" -init: false -arch: - - aarch64 - - amd64 - - armhf - - armv7 - - i386 -homeassistant_api: true -hassio_api: true -options: - grdf: - scan_interval: 480 # Number of minutes between each data retrieval (0 means no scan: a single data retrieval at startup, then stops). - username: "" - password: "" - pce_identifier: "" - timezone: "Europe/Paris" - last_days: 365 # Number of days of data to retrieve. - reset: false # If true, the data will be reset before the first data retrieval. If false, the data will be kept and new data will be added. -schema: - grdf: - scan_interval: int # Number of minutes between each data retrieval (0 means no scan: a single data retrieval at startup, then stops). - username: str - password: str - pce_identifier: str - timezone: str? - last_days: int? # Number of days of data to retrieve. - reset: bool? # If true, the data will be reset before the first data retrieval. If false, the data will be kept and new data will be added.