Compare commits

..

No commits in common. "9abdff165bead1c201efab3260f5a49436b95645" and "4a771d0446cea353804759955fbfd6c2985fc4fa" have entirely different histories.

View File

@ -64,10 +64,9 @@ for u in "${EXTRA_INDEX_URLS[@]}"; do
[[ -n "$u" && "$u" != "$PYPI_URL" ]] && UV_INDEX_ARGS+=(--extra-index-url "$u")
done
if [[ -f requirements.txt ]]; then
$STD /opt/dispatcharr/env/bin/python -m pip install --upgrade pip setuptools wheel
$STD /opt/dispatcharr/env/bin/pip install "${UV_INDEX_ARGS[@]}" -r requirements.txt
$STD uv pip install "${UV_INDEX_ARGS[@]}" -r requirements.txt
fi
$STD /opt/dispatcharr/env/bin/pip install "${UV_INDEX_ARGS[@]}" gunicorn gevent celery daphne
$STD uv pip install "${UV_INDEX_ARGS[@]}" gunicorn gevent celery daphne
ln -sf /usr/bin/ffmpeg /opt/dispatcharr/env/bin/ffmpeg
msg_ok "Python Requirements Installed"