commit 2c68bd460731f291378bcad58bd92fec5ad89f68 Author: David Hülsmann Date: Sat May 2 09:17:04 2026 +0200 feat: packages-Struktur für Bewässerungssystem anlegen 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