1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-08 17:49:37 +01:00
Files
core/start.py
T
2014-09-20 21:19:39 -05:00

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()