diff options
author | Paul Harrison <paul@harrison.sh> | 2022-11-20 15:13:16 +0000 |
---|---|---|
committer | Paul Harrison <paul@harrison.sh> | 2022-12-15 16:02:14 +0000 |
commit | 9baafc80ed889c232587cf5d4cfaa2db44d1825a (patch) | |
tree | 13371c1220a8eabbc0932d30cc9475b98b984c3b /Makefile | |
parent | b4ba284dcc20563b9b7dde770b7c9f67c6b25e76 (diff) |
feat: Hand ranking API
Hand ranking API with a health check root endpoint and rank endpoint.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,6 +1,10 @@ .DEFAULT_GOAL := help SHELL := /bin/bash +.PHONY: api +api: ## Run API + @poetry run uvicorn poker.api:app + .PHONY: black black: ## Run black formatter @poetry run black poker tests; |