mirror of
https://github.com/home-assistant/core.git
synced 2025-10-08 19:29:38 +00:00
.devcontainer
.github
.vscode
homeassistant
machine
pylint
rootfs
script
hassfest
scaffold
translations
__init__.py
alexa_locales.py
bootstrap
check_dirty
check_format
const.py
countries.py
currencies.py
gen_requirements_all.py
inspect_schemas.py
install_integration_requirements.py
languages.py
lint
lint_and_test.py
microsoft_tts.py
monkeytype
ruff.toml
run-in-env.sh
server
setup
split_tests.py
update
util.py
version_bump.py
tests
.core_files.yaml
.coveragerc
.dockerignore
.git-blame-ignore-revs
.gitattributes
.gitignore
.hadolint.yaml
.pre-commit-config.yaml
.prettierignore
.strict-typing
.yamllint
CLA.md
CODEOWNERS
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Dockerfile
Dockerfile.dev
LICENSE.md
MANIFEST.in
README.rst
build.yaml
codecov.yml
mypy.ini
pyproject.toml
requirements.txt
requirements_all.txt
requirements_test.txt
requirements_test_all.txt
requirements_test_pre_commit.txt
14 lines
269 B
Bash
Executable File
14 lines
269 B
Bash
Executable File
#!/bin/sh
|
|
# Launch the application and any extra required processes locally.
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
# Ensure translations are up to date
|
|
python3 -m script.translations develop --all
|
|
|
|
# Start Home Assistant
|
|
python3 -m homeassistant -c config
|