hass-core/start.py
2014-09-20 21:19:39 -05:00

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