aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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;