diff options
author | Teddy Wing | 2014-04-20 20:10:53 -0400 |
---|---|---|
committer | Teddy Wing | 2014-04-20 20:11:52 -0400 |
commit | 72adce1f6f056b5e8eaa1071d226de03dd7954b3 (patch) | |
tree | 56f35bfd9f6e70172256fe8d04c8e4c816b624a4 /examples | |
parent | 52301e5a8f46e78d41aa1e8fc6eef951461de8af (diff) | |
download | django-sneak-peek-72adce1f6f056b5e8eaa1071d226de03dd7954b3.tar.bz2 |
example/settings.py: add STATIC_ROOT
Diffstat (limited to 'examples')
-rw-r--r-- | examples/djangoproject/djangoproject/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/djangoproject/djangoproject/settings.py b/examples/djangoproject/djangoproject/settings.py index 8edd3b7..ea893a2 100644 --- a/examples/djangoproject/djangoproject/settings.py +++ b/examples/djangoproject/djangoproject/settings.py @@ -56,7 +56,7 @@ MEDIA_URL = '' # Don't put anything in this directory yourself; store your static files # in apps' "static/" subdirectories and in STATICFILES_DIRS. # Example: "/home/media/media.lawrence.com/static/" -STATIC_ROOT = '' +STATIC_ROOT = 'static' # URL prefix for static files. # Example: "http://media.lawrence.com/static/" |