30 lines
630 B
YAML
30 lines
630 B
YAML
|
|
homeassistant:
|
||
|
|
name: Home
|
||
|
|
time_zone: Europe/Warsaw
|
||
|
|
|
||
|
|
http:
|
||
|
|
server_port: 8123
|
||
|
|
|
||
|
|
logger:
|
||
|
|
default: info
|
||
|
|
|
||
|
|
automation: !include automations.yaml
|
||
|
|
scene: !include scenes.yaml
|
||
|
|
group: !include_dir_merge_named groups/
|
||
|
|
|
||
|
|
mqtt:
|
||
|
|
broker: 192.168.1.10
|
||
|
|
username: !secret mqtt_username
|
||
|
|
password: !secret mqtt_password
|
||
|
|
|
||
|
|
# Synthetic cases below are not real HA tags — they exist only to exercise
|
||
|
|
# generic mapping/sequence node handling for custom `!tag`s (normalize.py
|
||
|
|
# must not hardcode a list of known tag names).
|
||
|
|
zone_test: !fake_mapping_tag
|
||
|
|
latitude: 52.1
|
||
|
|
longitude: 21.0
|
||
|
|
|
||
|
|
platform_test: !fake_sequence_tag
|
||
|
|
- alpha
|
||
|
|
- beta
|