From: Radek Czajka Date: Mon, 23 Sep 2019 13:07:11 +0000 (+0200) Subject: Add a makefile. X-Git-Url: https://git.mdrn.pl/koed-quiz.git/commitdiff_plain/4639ac4538dde62784283cdeda000b52fb382e4e Add a makefile. --- diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..cc36123 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +.PHONY: deploy + + +deploy: koedquiz/localsettings.py + pip install -r requirements.txt + src/manage.py migrate --noinput + src/manage.py collectstatic --noinput +