use pipenv in makefile

This commit is contained in:
2022-10-12 12:27:37 -07:00
parent 2716d96fcc
commit b1d0252465

View File

@@ -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/*