Install Importarr from packaged repo build

This commit is contained in:
2026-07-29 13:07:39 +02:00
parent 0f7fc6f032
commit 6a7e83c1b6
4 changed files with 9 additions and 9 deletions
+4 -4
View File
@@ -3,7 +3,7 @@ PIP ?= .venv/bin/pip
SERVICE ?= importarr.service
LIVE_URL ?= http://127.0.0.1:8095
.PHONY: test install-systemd install-editable upgrade-local repo-upgrade verify-live
.PHONY: test install-systemd install-from-repo upgrade-local repo-upgrade verify-live
test:
$(PYTHON) -m pytest
@@ -11,11 +11,11 @@ test:
install-systemd:
sudo -n sh deploy/systemd-install.sh
install-editable:
sudo -n /opt/importarr/venv/bin/pip install --upgrade --editable /srv/opencode-workspace/importarr
install-from-repo:
sudo -n /opt/importarr/venv/bin/pip install --upgrade /srv/opencode-workspace/importarr
upgrade-local:
sudo -n /opt/importarr/venv/bin/pip install --upgrade --editable /srv/opencode-workspace/importarr
sudo -n /opt/importarr/venv/bin/pip install --upgrade /srv/opencode-workspace/importarr
sudo -n systemctl restart $(SERVICE)
repo-upgrade: