2015-09-17 07:38:52 +00:00
|
|
|
#!/bin/sh
|
2017-01-02 21:04:09 +00:00
|
|
|
# Launch the application and any extra required processes locally.
|
2015-09-17 07:38:52 +00:00
|
|
|
|
2017-01-02 21:04:09 +00:00
|
|
|
# Stop on errors
|
|
|
|
set -e
|
2015-09-17 07:38:52 +00:00
|
|
|
|
2015-09-17 07:35:26 +00:00
|
|
|
cd "$(dirname "$0")/.."
|
2023-02-06 14:06:43 +00:00
|
|
|
|
|
|
|
# Ensure translations are up to date
|
|
|
|
python3 -m script.translations develop --all
|
|
|
|
|
|
|
|
# Start Home Assistant
|
2015-09-17 07:35:26 +00:00
|
|
|
python3 -m homeassistant -c config
|