X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/4298f7948e8963176debf5877fce30c49ae4e3ad..e89f0663d3ef7ccbf2b51e400430695fb2421b6f:/Makefile?ds=inline

diff --git a/Makefile b/Makefile
index 5ef3ba7e4..3956cf34c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,17 @@
+.PHONY: deploy test
+
+
+deploy: src/wolnelektury/localsettings.py
+	pip install -r requirements/requirements.txt
+	src/manage.py migrate --noinput
+	src/manage.py update_counters
+	src/manage.py collectstatic --noinput
+
+
 .ONESHELL:
 test:
 	cd src
 	coverage run --branch --source='.' ./manage.py test; true
-	rm -rf ../htmlcov
 	coverage html -d ../htmlcov.new
 	rm -rf ../htmlcov
 	mv ../htmlcov.new ../htmlcov