2022-10-11 16:03:00 -07:00
|
|
|
SHELL = /bin/bash
|
|
|
|
.DEFAULT_GOAL := serve
|
|
|
|
|
|
|
|
serve:
|
2022-10-12 12:27:37 -07:00
|
|
|
pipenv run gunicorn flask_frontend:app
|
2022-10-11 16:03:00 -07:00
|
|
|
|
|
|
|
dev:
|
2022-10-12 12:27:37 -07:00
|
|
|
pipenv run gunicorn flask_frontend:app --reload
|
2022-10-11 16:03:00 -07:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf static/*
|
|
|
|
touch static/.gitkeep
|
2022-10-27 10:31:42 -07:00
|
|
|
|
|
|
|
batch:
|
|
|
|
pipenv run python3 batch-process.py
|
|
|
|
|