summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@proxience.com>2015-02-11 18:23:56 +0100
committerÉtienne Loks <etienne.loks@proxience.com>2015-02-11 18:23:56 +0100
commit87d832cae6f59e28b2ef2e15b7078ccc325fb0c4 (patch)
treefcca52e89808639630045c71ad6ec8b53d2620b1
parent272f9a0c7d0c09f0b7cb0a9cfd792639bf093390 (diff)
downloadChimère-87d832cae6f59e28b2ef2e15b7078ccc325fb0c4.tar.bz2
Chimère-87d832cae6f59e28b2ef2e15b7078ccc325fb0c4.zip
Makefile sample: add collecstatic to update
-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