First attempt at using blueprints
Some checks failed
continuous-integration/drone the build failed

This commit is contained in:
Jef Roosens 2021-05-18 23:12:00 +02:00
parent a53921b429
commit ea8721659c
Signed by: Jef Roosens
GPG key ID: 955C0660072F691F
5 changed files with 27 additions and 4 deletions

View file

@ -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