diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..adc709c --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +.PHONY: docs +docs: + cd docs; make clean; make html; cd .. + yes 'yes' | env/bin/python manage.py collectstatic + +.PHONY: lint +lint: + prospector + +.PHONY: staging +staging: + ansible-playbook -v -i staging.yml playbook.yml -u jag1e17 -K + +.PHONY: production +production: + ansible-playbook -v -i production.yml playbook.yml -u jag1e17 -K