mirror of
https://github.com/home-assistant/core.git
synced 2025-07-05 04:17:10 +00:00
9 lines
227 B
Python
9 lines
227 B
Python
""" Starts home assistant with all possible functionality. """
|
|
|
|
import homeassistant
|
|
import homeassistant.bootstrap
|
|
|
|
hass = homeassistant.bootstrap.from_config_file("home-assistant.conf")
|
|
hass.start()
|
|
hass.block_till_stopped()
|