Files
core/script/bootstrap

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
359 B
Plaintext
Raw Normal View History

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