From fcacacc9c1d26e06de68a7c85c00be8602105a2d Mon Sep 17 00:00:00 2001 From: Charlie Denton Date: Sun, 14 Sep 2025 18:23:15 +0100 Subject: [PATCH] Create and activate a virtualenv with uv in prod --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index a679096e..ce208d07 100644 --- a/Makefile +++ b/Makefile @@ -27,6 +27,8 @@ build: _uv python manage.py load_all_django_versions build-prod: _uv + uv venv --python 3.13 + source .venv/bin/activate uv pip install -r requirements.prod.txt rm -rf staticfiles/* python manage.py collectstatic --no-input