summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.example6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.example b/Makefile.example
index d11fc57..e50bace 100644
--- a/Makefile.example
+++ b/Makefile.example
@@ -6,7 +6,7 @@ PYTHON=python
# put name of your current project
project=chimere_example_project
-update: clean syncdb compilemessages
+update: clean syncdb compilemessages collectstatic
clean:
-rm -rf *~*
@@ -39,3 +39,7 @@ run:
compilemessages:
cd $(CURDIR)/chimere; \
$(PYTHON) ../$(project)/manage.py compilemessages
+
+collectstatic:
+ cd $(CURDIR)/chimere; \
+ $(PYTHON) ../$(project)/manage.py collectstatic --noinput