Files
core/script/bootstrap
T

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

23 lines
448 B
Bash
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")/..")"
if [ ! -n "$VIRTUAL_ENV" ]; then
source .venv/bin/activate
fi
echo "Installing development dependencies..."
uv pip install \
-e . \
2026-05-20 23:54:31 +02:00
-r requirements_all.txt \
-r requirements_test.txt \
colorlog \
--upgrade \
--config-settings editable_mode=compat
python3 -m script.translations develop --all