Update wger install and update scripts for pip usage

Replaces 'uv sync --no-dev' and editable pip install with 'uv venv' and standard pip install in both wger.sh and wger-install.sh. This streamlines the installation and update process for wger.
This commit is contained in:
CanbiZ (MickLesk)
2026-01-22 15:49:39 +01:00
parent 3d4a95cbd7
commit 249113c2b9
2 changed files with 3 additions and 4 deletions

View File

@@ -51,8 +51,7 @@ function update_script() {
msg_info "Updating wger"
cd /opt/wger
$STD uv sync --no-dev
$STD uv pip install -e .
$STD uv pip install .
export DJANGO_SETTINGS_MODULE=settings.main
export PYTHONPATH=/opt/wger
$STD uv run python manage.py migrate