12 lines
154 B
Makefile
12 lines
154 B
Makefile
build:
|
|
sam build --use-container
|
|
|
|
deploy: build
|
|
sam deploy --debug
|
|
|
|
pytest:
|
|
uv run pytest
|
|
|
|
htmlcov: pytest
|
|
uv run python -m http.server 80 -d htmlcov
|