Skip to content

Commit 3a4498e

Browse files
committed
Discontinue use of PYTHON variable, attempt to fix weird error.
1 parent 071388d commit 3a4498e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ PYTHON="uv run --link-mode=copy python"
22

33
run-server:
44
echo "Starting server..."; \
5-
$(PYTHON) manage.py migrate; \
6-
$(PYTHON) manage.py collectstatic --noinput; \
5+
uv run --link-mode=copy python manage.py migrate; \
6+
uv run --link-mode=copy python manage.py collectstatic --noinput; \
77
uv run gunicorn --timeout 30 alloydflanagan.wsgi:application --bind 0.0.0.0:8080 --log-file -; \
88
echo "Server is up."
99

0 commit comments

Comments
 (0)