summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@proxience.com>2015-02-11 18:24:42 +0100
committerÉtienne Loks <etienne.loks@proxience.com>2015-02-11 18:24:42 +0100
commit72f4ae70dee56b5e532a579aeae7f5cc22f49813 (patch)
tree8cd97735bb59881d540d4a4bdfc46250fd911f69
parent037fadae70c86706401e7dd9b312c66e98a673db (diff)
parent87d832cae6f59e28b2ef2e15b7078ccc325fb0c4 (diff)
downloadChimère-72f4ae70dee56b5e532a579aeae7f5cc22f49813.tar.bz2
Chimère-72f4ae70dee56b5e532a579aeae7f5cc22f49813.zip
Merge branch 'v2.1'
-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