- Remove frontend dependencies that aren't in Nix package - Use minimal config with just HTTP, API, and MQTT - Prepare for either Docker alternative or core-only testing
30 lines
533 B
YAML
30 lines
533 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
|
|
|
|
# Basic required components only
|
|
http:
|
|
server_host: 0.0.0.0
|
|
server_port: 8123
|
|
|
|
# Enable API
|
|
api:
|
|
|
|
# Enable logging
|
|
logger:
|
|
default: info
|
|
logs:
|
|
custom_components.systant: debug
|
|
|
|
# MQTT Configuration (for our integration testing)
|
|
mqtt:
|
|
- broker: mqtt.home
|
|
port: 1883
|
|
discovery: true
|
|
discovery_prefix: homeassistant |