firelab-general/Makefile

13 lines
170 B
Makefile
Raw Normal View History

2022-10-11 16:03:00 -07:00
SHELL = /bin/bash
.DEFAULT_GOAL := serve
serve:
gunicorn flask_frontend:app
dev:
gunicorn flask_frontend:app --reload
clean:
rm -rf static/*
touch static/.gitkeep