aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2025-01-06 17:10:00 +0000
committerMatthew Lemon <y@yulqen.org>2025-01-06 17:10:00 +0000
commita185d07a3299932f6827f293b1a4115cac9317a4 (patch)
tree6c79c340acfc857aec0c0b2638396459392dc7bb /Makefile
parentf5f01b14cd29d72f1da5e96971991ae5d2982b13 (diff)
Make some insignificant changes to Makefile
Diffstat (limited to '')
-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"