This commit is contained in:
Kenneth Kehl
2025-07-30 11:25:36 -07:00
parent d35c7bbd5f
commit 4c258bb39b
2 changed files with 1 additions and 2 deletions

View File

@@ -42,7 +42,7 @@ watch-frontend: ## Build frontend and watch for changes
.PHONY: run-flask
run-flask: ## Run flask
poetry run newrelic-admin run-program gunicorn -c gunicorn_config.py gunicorn_entry:application -b 0.0.0.0:6012
poetry run newrelic-admin run-program flask run -p 6012 --host=0.0.0.0
.PHONY: run-flask-bare
run-flask-bare: ## Run flask without invoking poetry so we can override ENV variables in .env

View File

@@ -48,7 +48,6 @@ def check_axe_report(page):
assert violation["impact"] in [
"minor",
"moderate",
"serious", # TODO!!! REMOVE THIS
], f"Accessibility violation: {violation}"