From 2c68bd460731f291378bcad58bd92fec5ad89f68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20H=C3=BClsmann?= Date: Sat, 2 May 2026 09:17:04 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20packages-Struktur=20f=C3=BCr=20Bew?= =?UTF-8?q?=C3=A4sserungssystem=20anlegen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 29 +++++++++++++++++++++++++++++ configuration.yaml | 22 ++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 .gitignore create mode 100644 configuration.yaml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a6aba54 --- /dev/null +++ b/.gitignore @@ -0,0 +1,29 @@ +# Home Assistant configuration +*.db +*.db-journal +.cache +backups/ +secrets.yaml +automations.yaml +scripts.yaml +scenes.yaml + +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +env/ +venv/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db diff --git a/configuration.yaml b/configuration.yaml new file mode 100644 index 0000000..b91be39 --- /dev/null +++ b/configuration.yaml @@ -0,0 +1,22 @@ +# Home Assistant Konfiguration + +homeassistant: + name: Home + unit_system: metric + time_zone: Europe/Berlin + packages: !include_dir_named packages + +# Logging +logger: + default: info + +# HTTP configuration +http: + cors_allowed_origins: + - http://localhost:8123 + - http://127.0.0.1:8123 + +# Automation und Scripts +automation: !include automations.yaml +script: !include scripts.yaml +scene: !include scenes.yaml