Files
whisperbox-transcribe/Makefile
Felix Spöttel b3a38846ba feat: add job & artifact tables
* remove `accounts` table in favor of a simple API key auth
2023-01-05 12:03:41 +01:00

15 lines
126 B
Makefile

dev:
uvicorn app.main:app --reload
fmt:
black app
isort app
test:
ENVIRONMENT=test pytest
lint:
mypy app
flake8 app