hass-core/start.py
2014-04-29 00:30:31 -07:00

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