Files
saladeaula.digital/http-api/Makefile
2025-03-25 22:43:34 -03:00

19 lines
271 B
Makefile

build:
sam build --use-container
deploy: build
sam deploy --debug
start-api: build
sam local start-api
openapi:
uv run openapi.py && \
uv run python -m http.server 80 -d swagger
pytest:
uv run pytest
htmlcov: pytest
uv run python -m http.server 80 -d htmlcov