mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-26 01:05:18 +01:00
7 lines
179 B
Python
7 lines
179 B
Python
#!/usr/bin/python2
|
|
""" Starts home assistant with all possible functionality. """
|
|
|
|
import homeassistant.bootstrap
|
|
|
|
homeassistant.bootstrap.from_config_file("home-assistant.conf")
|