- Remove mosquitto from flake (use existing broker) - Point dev config to mqtt.home instead of localhost - Cleaner setup using your existing MQTT infrastructure
47 lines
848 B
YAML
47 lines
848 B
YAML
# Home Assistant Development Configuration for Systant Integration
|
|
|
|
homeassistant:
|
|
name: Systant Development
|
|
latitude: 0
|
|
longitude: 0
|
|
elevation: 0
|
|
unit_system: metric
|
|
time_zone: UTC
|
|
|
|
# Enable configuration UI
|
|
config:
|
|
|
|
# Enable frontend
|
|
frontend:
|
|
themes: !include_dir_merge_named themes
|
|
|
|
# Enable API
|
|
api:
|
|
|
|
# Enable system health
|
|
system_health:
|
|
|
|
# Enable mobile app support
|
|
mobile_app:
|
|
|
|
# MQTT Configuration (connect to existing mqtt.home broker)
|
|
mqtt:
|
|
broker: mqtt.home
|
|
port: 1883
|
|
discovery: true
|
|
discovery_prefix: homeassistant
|
|
|
|
# Enable logging
|
|
logger:
|
|
default: info
|
|
logs:
|
|
custom_components.systant: debug
|
|
homeassistant.components.mqtt: debug
|
|
|
|
# Enable recorder with in-memory database for development
|
|
recorder:
|
|
db_url: "sqlite:///:memory:"
|
|
purge_keep_days: 1
|
|
|
|
# Enable default integrations
|
|
default_config: |