fix: relax harlequin dependency; update other deps

This commit is contained in:
Ted Conbeer 2025-01-08 11:07:41 -07:00
commit ebfbf8f6e3
6 changed files with 675 additions and 557 deletions

View file

@ -1,9 +1,24 @@
.PHONY: check
check:
ruff format .
ruff check . --fix
mypy
pytest
.PHONY: init
init:
docker-compose up -d
.PHONY: clean
clean:
docker-compose down
.PHONY: serve
serve:
harlequin -a odbc "${ODBC_CONN_STR}"
harlequin -P None -a odbc "${ODBC_CONN_STR}"
.PHONY: lint
lint:
black .
ruff . --fix
mypy
ruff format .
ruff check . --fix
mypy