add make command for deploy

prod
Dmitriy Shesterkin 9 years ago
parent c59f9995ed
commit 4d048ed871
  1. 7
      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

Loading…
Cancel
Save