mirror of
https://github.com/elisspace/core.git
synced 2026-09-16 15:56:22 +00:00
9 lines
234 B
Python
9 lines
234 B
Python
""" Starts home assistant with all possible functionality. """
|
|
|
|
import homeassistant
|
|
import homeassistant.bootstrap
|
|
|
|
hass = homeassistant.bootstrap.from_config_file("config/home-assistant.conf")
|
|
hass.start()
|
|
hass.block_till_stopped()
|