We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 071388d commit 3a4498eCopy full SHA for 3a4498e
app/Makefile
@@ -2,8 +2,8 @@ PYTHON="uv run --link-mode=copy python"
2
3
run-server:
4
echo "Starting server..."; \
5
- $(PYTHON) manage.py migrate; \
6
- $(PYTHON) manage.py collectstatic --noinput; \
+ uv run --link-mode=copy python manage.py migrate; \
+ uv run --link-mode=copy python manage.py collectstatic --noinput; \
7
uv run gunicorn --timeout 30 alloydflanagan.wsgi:application --bind 0.0.0.0:8080 --log-file -; \
8
echo "Server is up."
9
0 commit comments