use pipenv in makefile

master
michael 2022-10-12 12:27:37 -07:00
parent 2716d96fcc
commit b1d0252465
1 changed files with 2 additions and 2 deletions

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