This commit is contained in:
parent
a53921b429
commit
ea8721659c
5 changed files with 27 additions and 4 deletions
4
Makefile
4
Makefile
|
|
@ -3,7 +3,7 @@ PYTHON := python3
|
|||
# This can't contain spaces (I think)
|
||||
VENV := .venv
|
||||
# Minimum % coverage for tests to succeed
|
||||
MIN_COV := 0
|
||||
MIN_COV := 50
|
||||
# Directory name for the frontend
|
||||
WEB_DIR := web
|
||||
|
||||
|
|
@ -55,7 +55,7 @@ test: venv
|
|||
## Starting the server
|
||||
### Run the Quart server
|
||||
run: venv
|
||||
@ '$(VENV)'/bin/python app
|
||||
@ QUART_ENV=development '$(VENV)'/bin/python app
|
||||
.PHONY: run
|
||||
|
||||
|
||||
|
|
|
|||
Reference in a new issue