diff options
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 |
commit | 72f4ae70dee56b5e532a579aeae7f5cc22f49813 (patch) | |
tree | 8cd97735bb59881d540d4a4bdfc46250fd911f69 | |
parent | 037fadae70c86706401e7dd9b312c66e98a673db (diff) | |
parent | 87d832cae6f59e28b2ef2e15b7078ccc325fb0c4 (diff) | |
download | Chimère-72f4ae70dee56b5e532a579aeae7f5cc22f49813.tar.bz2 Chimère-72f4ae70dee56b5e532a579aeae7f5cc22f49813.zip |
Merge branch 'v2.1'
-rw-r--r-- | Makefile.example | 6 |
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 |