aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 76da020..77d18b4 100644
--- a/Makefile
+++ b/Makefile
@@ -6,6 +6,10 @@ PROJECT_DIR = /home/jo/alphabetlearning
.PHONY: deploy
+run-development-server:
+ @echo "Running the development server..."
+ uv run manage.py runserver
+
deploy-to-staging:
@echo "1. Pushing changes to remote repository..."
git push
@@ -20,7 +24,7 @@ deploy-to-staging:
@echo "Deployment completed!"
test-all:
- @pytest -q -s .
+ @uv run pytest -q -s .
test:
- @pytest -q -s -m "not slow"
+ @uv run pytest -q -s -m "not slow"