From e8736e5303a0e286eeaa82e4a7d87aae1a06da0e Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sun, 4 Mar 2018 10:56:35 +0100 Subject: [PATCH] Fix runtime --- bash/run-prod.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/run-prod.sh b/bash/run-prod.sh index f6eff72..584dd06 100644 --- a/bash/run-prod.sh +++ b/bash/run-prod.sh @@ -1,2 +1,2 @@ #!/bin/sh -yes yes | python3 manage.py migrate && python3 manage.py collectstatic --noinput && gunicorn workout.wsgi -b 0.0.0.0:8000 --log-file - \ No newline at end of file +yes yes | pipenv run python manage.py migrate && pipenv run python manage.py collectstatic --noinput && pipenv run gunicorn workout.wsgi -b 0.0.0.0:8000 --log-file - \ No newline at end of file