1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-25 17:56:30 +01:00
Files
core/script/bootstrap
T
2026-05-20 23:54:31 +02:00

19 lines
383 B
Bash
Executable File

#!/bin/sh
# Resolve all dependencies that the application requires to run.
# Stop on errors
set -e
cd "$(realpath "$(dirname "$0")/..")"
echo "Installing development dependencies..."
uv pip install \
-e . \
-r requirements_all.txt \
-r requirements_test.txt \
colorlog \
--upgrade \
--config-settings editable_mode=compat
python3 -m script.translations develop --all