From b1d025246510abbc0e8fd1c79918f8ff8eec03bf Mon Sep 17 00:00:00 2001 From: turtlebasket Date: Wed, 12 Oct 2022 12:27:37 -0700 Subject: [PATCH] use pipenv in makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7681449..b5eee58 100644 --- a/Makefile +++ b/Makefile @@ -2,10 +2,10 @@ SHELL = /bin/bash .DEFAULT_GOAL := serve serve: - gunicorn flask_frontend:app + pipenv run gunicorn flask_frontend:app dev: - gunicorn flask_frontend:app --reload + pipenv run gunicorn flask_frontend:app --reload clean: rm -rf static/*