From 8ccfca9e5c0c6ae3e4960e5f2702c2f32cb95cb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Ferdinand?= Date: Fri, 7 Mar 2025 21:51:24 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=20Fix=20Home=20Assistant=20Add-on?= =?UTF-8?q?=20Repository=20Structure?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Commit description: Moved add-on files into a dedicated newt/ subfolder Added repository.json to the root for Home Assistant recognition Ensured config.yaml is inside the newt/ directory Verified correct directory structure for add-on compatibility Improved repository setup for proper installation in Home Assistant --- Dockerfile => newt/Dockerfile | 0 README.md => newt/README.md | 0 config.yaml => newt/config.yaml | 0 run.sh => newt/run.sh | 0 repository.json | 5 +++++ 5 files changed, 5 insertions(+) rename Dockerfile => newt/Dockerfile (100%) rename README.md => newt/README.md (100%) rename config.yaml => newt/config.yaml (100%) rename run.sh => newt/run.sh (100%) create mode 100644 repository.json diff --git a/Dockerfile b/newt/Dockerfile similarity index 100% rename from Dockerfile rename to newt/Dockerfile diff --git a/README.md b/newt/README.md similarity index 100% rename from README.md rename to newt/README.md diff --git a/config.yaml b/newt/config.yaml similarity index 100% rename from config.yaml rename to newt/config.yaml diff --git a/run.sh b/newt/run.sh similarity index 100% rename from run.sh rename to newt/run.sh diff --git a/repository.json b/repository.json new file mode 100644 index 0000000..b5d8865 --- /dev/null +++ b/repository.json @@ -0,0 +1,5 @@ +{ + "name": "Home Assistant Newt Add-on Repository", + "url": "https://github.com/Ferdinand99/home-assistant-newt-addon", + "maintainer": "Ferdinand99" +}