2013-10-07 20:23:05 -07:00
|
|
|
""" Starts home assistant with all possible functionality. """
|
|
|
|
|
2014-04-24 00:40:45 -07:00
|
|
|
import homeassistant
|
2013-10-13 10:42:22 -07:00
|
|
|
import homeassistant.bootstrap
|
2013-09-17 00:32:51 -07:00
|
|
|
|
2014-04-29 00:30:31 -07:00
|
|
|
hass = homeassistant.bootstrap.from_config_file("home-assistant.conf")
|
|
|
|
hass.start()
|
|
|
|
hass.block_till_stopped()
|