feat: packages-Struktur für Bewässerungssystem anlegen
This commit is contained in:
+29
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user