Files
firelab-general/Makefile
2022-10-12 12:27:37 -07:00

13 lines
192 B
Makefile

SHELL = /bin/bash
.DEFAULT_GOAL := serve
serve:
pipenv run gunicorn flask_frontend:app
dev:
pipenv run gunicorn flask_frontend:app --reload
clean:
rm -rf static/*
touch static/.gitkeep