summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2015-05-25 17:50:45 +0800
committerJeremy Kerr <jk@ozlabs.org>2015-05-28 09:05:45 +0800
commitdaa3ae42eee5e569881070bcc2958b361743f70a (patch)
treeb50cdbb38d6a3f2eca27e3cc98c3128edc6a43aa
parentd636cb34a3b13ea3e6b776e951e6276a94d968c6 (diff)
downloadpatchwork-daa3ae42eee5e569881070bcc2958b361743f70a.tar.bz2
patchwork-daa3ae42eee5e569881070bcc2958b361743f70a.tar.xz
docs: Add collectstatic step to installation instructions
Because we're now using the staticfiles app, we need to run collectstatic on init. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
-rw-r--r--docs/INSTALL6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/INSTALL b/docs/INSTALL
index 7e1f309..cb0eccf 100644
--- a/docs/INSTALL
+++ b/docs/INSTALL
@@ -144,7 +144,11 @@ in brackets):
PYTHONPATH=lib/python ./manage.py syncdb
- And add privileges for your mail and web users. This is only needed if
+ and initialise the static content:
+
+ PYTHONPATH=lib/python ./manage.py collectstatic
+
+ and add privileges for your mail and web users. This is only needed if
you use the ident-based approach. If you use password-based database
authentication, you can skip this step.