aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Harrison <paul@harrison.sh>2022-11-20 15:13:16 +0000
committerPaul Harrison <paul@harrison.sh>2022-12-15 16:02:14 +0000
commit9baafc80ed889c232587cf5d4cfaa2db44d1825a (patch)
tree13371c1220a8eabbc0932d30cc9475b98b984c3b /Makefile
parentb4ba284dcc20563b9b7dde770b7c9f67c6b25e76 (diff)
feat: Hand ranking API
Hand ranking API with a health check root endpoint and rank endpoint.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5d0b70c..82bf93e 100644
--- a/Makefile
+++ b/Makefile
@@ -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;