diff --git a/Makefile b/Makefile index 1f1c4a8..98cff5d 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: all help build virtualenv requirements-local loaddata run migrate shell collectstatic clean worker qa +.PHONY: all help build virtualenv requirements-local loaddata run migrate shell collectstatic clean worker qa update-develop # target: all - Default target. Does nothing. all: @@ -73,3 +73,8 @@ worker: # target: qa - Run pytest qa: pytest + +# target: update-develop - Run push change in repo develop branch and deploy for develop server +update-develop: + git push origin develop + fab update