🚀 Add Home Assistant Newt Add-on
Commit description:
Added config.yaml for add-on configuration
Created Dockerfile to build the add-on container
Implemented run.sh to start and manage the Newt container
Included a detailed README.md with installation and usage instructions
Prepared repository for Home Assistant custom add-on support
21 lines
407 B
YAML
21 lines
407 B
YAML
name: "Newt Add-on"
|
|
version: "1.0.0"
|
|
slug: "newt"
|
|
description: "Kjører Newt-containeren i Home Assistant"
|
|
arch:
|
|
- amd64
|
|
- armv7
|
|
- armhf
|
|
- aarch64
|
|
startup: "system"
|
|
boot: "auto"
|
|
host_network: true
|
|
privileged: true
|
|
options:
|
|
PANGOLIN_ENDPOINT: "https://example.com"
|
|
NEWT_ID: "your_newt_id"
|
|
NEWT_SECRET: "your_newt_secret"
|
|
schema:
|
|
PANGOLIN_ENDPOINT: "str"
|
|
NEWT_ID: "str"
|
|
NEWT_SECRET: "str"
|