Files
firelab-general/Makefile
2022-10-11 18:03:00 -05:00

13 lines
170 B
Makefile

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