diff options
Diffstat (limited to 'Makefile.example')
-rw-r--r-- | Makefile.example | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.example b/Makefile.example index fc6af35e2..3ad0fb71c 100644 --- a/Makefile.example +++ b/Makefile.example @@ -19,6 +19,8 @@ help: # * pep8: # * pylint: # * syncdb: + # * run: + # * runcelery: # * shell: # * makemessages: # * compilemessages: @@ -82,6 +84,9 @@ shell: run: cd $(project); $(PYTHON) manage.py runserver 0.0.0.0:8000 +runcelery: + celery -A example_project worker -l info + makemessages: for DIR in $(apps); do \ cd $(CURDIR)/$$DIR; \ |